diff --git a/charts/pulsar/templates/proxy-statefulset.yaml b/charts/pulsar/templates/proxy-statefulset.yaml index 756253d2..ccbb21d1 100644 --- a/charts/pulsar/templates/proxy-statefulset.yaml +++ b/charts/pulsar/templates/proxy-statefulset.yaml @@ -147,7 +147,7 @@ spec: livenessProbe: httpGet: path: /status.html - port: {{ .Values.proxy.ports.http }} + port: {{ .Values.proxy.ports.containerPorts.http }} initialDelaySeconds: {{ .Values.proxy.probe.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.proxy.probe.liveness.periodSeconds }} timeoutSeconds: {{ .Values.proxy.probe.liveness.timeoutSeconds }} @@ -157,7 +157,7 @@ spec: readinessProbe: httpGet: path: /status.html - port: {{ .Values.proxy.ports.http }} + port: {{ .Values.proxy.ports.containerPorts.http }} initialDelaySeconds: {{ .Values.proxy.probe.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.proxy.probe.readiness.periodSeconds }} timeoutSeconds: {{ .Values.proxy.probe.readiness.timeoutSeconds }} @@ -167,7 +167,7 @@ spec: startupProbe: httpGet: path: /status.html - port: {{ .Values.proxy.ports.http }} + port: {{ .Values.proxy.ports.containerPorts.http }} initialDelaySeconds: {{ .Values.proxy.probe.startup.initialDelaySeconds }} periodSeconds: {{ .Values.proxy.probe.startup.periodSeconds }} timeoutSeconds: {{ .Values.proxy.probe.startup.timeoutSeconds }}