chore(argo-worflows): update controller liveness probe
Signed-off-by: Alex Sears <me@alexsears.com>
This commit is contained in:
parent
4ff50f93e1
commit
5bb12d0fca
1 changed files with 8 additions and 4 deletions
|
@ -77,12 +77,16 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- name: metrics
|
- name: metrics
|
||||||
containerPort: {{ .Values.controller.metricsConfig.port }}
|
containerPort: {{ .Values.controller.metricsConfig.port }}
|
||||||
|
- containerPort: 6060
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
port: metrics
|
port: 6060
|
||||||
path: {{ .Values.controller.metricsConfig.path }}
|
path: /healthz
|
||||||
initialDelaySeconds: 30
|
# Require three failures to tolerate transient errors.
|
||||||
periodSeconds: 30
|
failureThreshold: 3
|
||||||
|
initialDelaySeconds: 90
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 30
|
||||||
{{- with .Values.images.pullSecrets }}
|
{{- with .Values.images.pullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
|
Loading…
Reference in a new issue