youzipi commented on issue #423:
URL:
https://github.com/apache/pulsar-helm-chart/issues/423#issuecomment-2378966965
> Hi @youzipi can you share your manifest for your special ingress created
for broker? I need exactly that I think. Thank you
actually, i use proxy now.
this is the ingress config i used that time.
```yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
app: pulsar
cluster: pulsar
environment: alpha
component: broker
annotations:
name: "pulsar-broker"
namespace: pulsar
spec:
rules:
- http:
paths:
- path: /pulsar($|/)(.*)
pathType: ImplementationSpecific
backend:
service:
name: "pulsar-broker"
port:
number: 6650
- path: /pulsar-web($|/)(.*)
pathType: ImplementationSpecific
backend:
service:
name: "pulsar-broker"
port:
number: 8080
host: $your-host-name
---
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]