added port configuration for liveness/readiness probes in helm charts
This commit is contained in:
parent
8a31efeab2
commit
a4f169ddce
@ -40,6 +40,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -49,6 +50,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -55,7 +55,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -40,6 +40,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -49,6 +50,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -55,7 +55,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
@ -40,6 +40,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -49,6 +50,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -55,7 +55,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
@ -39,6 +39,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -48,6 +49,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -55,7 +55,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -31,7 +31,8 @@ spec:
|
|||||||
{{ if .Values.probes -}}
|
{{ if .Values.probes -}}
|
||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -46,7 +46,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -49,8 +49,10 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -66,7 +66,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -57,7 +57,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -61,7 +61,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -69,7 +69,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -55,7 +55,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -61,7 +61,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -47,7 +47,9 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
@ -32,6 +32,7 @@ spec:
|
|||||||
{{- if .Values.probes.liveness -}}
|
{{- if .Values.probes.liveness -}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.liveness.port }}
|
||||||
path: {{ .Values.probes.liveness.path }}
|
path: {{ .Values.probes.liveness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
|
||||||
@ -41,6 +42,7 @@ spec:
|
|||||||
{{- if .Values.probes.readiness }}
|
{{- if .Values.probes.readiness }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
port: {{ .Values.probes.readiness.port }}
|
||||||
path: {{ .Values.probes.readiness.path }}
|
path: {{ .Values.probes.readiness.path }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
|
||||||
|
@ -69,8 +69,10 @@ probes:
|
|||||||
path: /liveness
|
path: /liveness
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
readiness:
|
readiness:
|
||||||
path: /hc
|
path: /hc
|
||||||
initialDelaySeconds: 90
|
initialDelaySeconds: 90
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user