Use container ports for proxy stateful set probes (#410)
Using service ports cause probes to fail. Co-authored-by: emre <emre.aydin@zapata.ai>
This commit is contained in:
parent
8cb3c18377
commit
9542c7b226
@ -147,7 +147,7 @@ spec:
|
|||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /status.html
|
path: /status.html
|
||||||
port: {{ .Values.proxy.ports.http }}
|
port: {{ .Values.proxy.ports.containerPorts.http }}
|
||||||
initialDelaySeconds: {{ .Values.proxy.probe.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.proxy.probe.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.proxy.probe.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.proxy.probe.liveness.periodSeconds }}
|
||||||
timeoutSeconds: {{ .Values.proxy.probe.liveness.timeoutSeconds }}
|
timeoutSeconds: {{ .Values.proxy.probe.liveness.timeoutSeconds }}
|
||||||
@ -157,7 +157,7 @@ spec:
|
|||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /status.html
|
path: /status.html
|
||||||
port: {{ .Values.proxy.ports.http }}
|
port: {{ .Values.proxy.ports.containerPorts.http }}
|
||||||
initialDelaySeconds: {{ .Values.proxy.probe.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.proxy.probe.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.proxy.probe.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.proxy.probe.readiness.periodSeconds }}
|
||||||
timeoutSeconds: {{ .Values.proxy.probe.readiness.timeoutSeconds }}
|
timeoutSeconds: {{ .Values.proxy.probe.readiness.timeoutSeconds }}
|
||||||
@ -167,7 +167,7 @@ spec:
|
|||||||
startupProbe:
|
startupProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /status.html
|
path: /status.html
|
||||||
port: {{ .Values.proxy.ports.http }}
|
port: {{ .Values.proxy.ports.containerPorts.http }}
|
||||||
initialDelaySeconds: {{ .Values.proxy.probe.startup.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.proxy.probe.startup.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.proxy.probe.startup.periodSeconds }}
|
periodSeconds: {{ .Values.proxy.probe.startup.periodSeconds }}
|
||||||
timeoutSeconds: {{ .Values.proxy.probe.startup.timeoutSeconds }}
|
timeoutSeconds: {{ .Values.proxy.probe.startup.timeoutSeconds }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user