diff --git a/charts/pulsar/templates/proxy-ingress.yaml b/charts/pulsar/templates/proxy-ingress.yaml index 09a88817..cbd36d91 100644 --- a/charts/pulsar/templates/proxy-ingress.yaml +++ b/charts/pulsar/templates/proxy-ingress.yaml @@ -59,7 +59,7 @@ spec: servicePort: {{ .Values.proxy.ports.http }} {{- end }} {{- else }} - pathType: ImplementationSpecific + pathType: {{ .Values.proxy.ingress.pathType }} backend: service: name: "{{ template "pulsar.fullname" . }}-{{ .Values.proxy.component }}" diff --git a/charts/pulsar/templates/pulsar-manager-ingress.yaml b/charts/pulsar/templates/pulsar-manager-ingress.yaml index 08c4bdf0..603a1d5d 100644 --- a/charts/pulsar/templates/pulsar-manager-ingress.yaml +++ b/charts/pulsar/templates/pulsar-manager-ingress.yaml @@ -55,7 +55,7 @@ spec: serviceName: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}" servicePort: {{ .Values.pulsar_manager.service.targetPort }} {{- else }} - pathType: ImplementationSpecific + pathType: {{ .Values.pulsar_manager.ingress.pathType }} backend: service: name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}" diff --git a/charts/pulsar/values.yaml b/charts/pulsar/values.yaml index 401d0894..9236c341 100755 --- a/charts/pulsar/values.yaml +++ b/charts/pulsar/values.yaml @@ -1297,6 +1297,7 @@ proxy: hostname: "" path: "/" + pathType: ImplementationSpecific ## Proxy PodDisruptionBudget ## templates/proxy-pdb.yaml ## @@ -1523,6 +1524,7 @@ pulsar_manager: hostname: "" path: "/" + pathType: ImplementationSpecific ## On first install, the helm chart tries to reuse an existing secret with matching name by default ## if this should fail it uses the given username and password to create a new secret