Fix helm chart to allow configurable ingress pathType (#558)
This commit is contained in:
parent
05c78df4c5
commit
df9284dc97
@ -59,7 +59,7 @@ spec:
|
|||||||
servicePort: {{ .Values.proxy.ports.http }}
|
servicePort: {{ .Values.proxy.ports.http }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
pathType: ImplementationSpecific
|
pathType: {{ .Values.proxy.ingress.pathType }}
|
||||||
backend:
|
backend:
|
||||||
service:
|
service:
|
||||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.proxy.component }}"
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.proxy.component }}"
|
||||||
|
|||||||
@ -55,7 +55,7 @@ spec:
|
|||||||
serviceName: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
serviceName: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
||||||
servicePort: {{ .Values.pulsar_manager.service.targetPort }}
|
servicePort: {{ .Values.pulsar_manager.service.targetPort }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
pathType: ImplementationSpecific
|
pathType: {{ .Values.pulsar_manager.ingress.pathType }}
|
||||||
backend:
|
backend:
|
||||||
service:
|
service:
|
||||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
name: "{{ template "pulsar.fullname" . }}-{{ .Values.pulsar_manager.component }}"
|
||||||
|
|||||||
@ -1297,6 +1297,7 @@ proxy:
|
|||||||
|
|
||||||
hostname: ""
|
hostname: ""
|
||||||
path: "/"
|
path: "/"
|
||||||
|
pathType: ImplementationSpecific
|
||||||
## Proxy PodDisruptionBudget
|
## Proxy PodDisruptionBudget
|
||||||
## templates/proxy-pdb.yaml
|
## templates/proxy-pdb.yaml
|
||||||
##
|
##
|
||||||
@ -1523,6 +1524,7 @@ pulsar_manager:
|
|||||||
|
|
||||||
hostname: ""
|
hostname: ""
|
||||||
path: "/"
|
path: "/"
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
|
||||||
## On first install, the helm chart tries to reuse an existing secret with matching name by default
|
## 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
|
## if this should fail it uses the given username and password to create a new secret
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user