chore(argo-worflows): update controller liveness probe

Signed-off-by: Alex Sears <me@alexsears.com>
This commit is contained in:
Alex Sears 2021-06-18 14:58:02 -04:00
parent 4ff50f93e1
commit 5bb12d0fca
No known key found for this signature in database
GPG key ID: C5830CA0D9202CBF

View file

@ -77,12 +77,16 @@ spec:
ports:
- name: metrics
containerPort: {{ .Values.controller.metricsConfig.port }}
- containerPort: 6060
livenessProbe:
httpGet:
port: metrics
path: {{ .Values.controller.metricsConfig.path }}
initialDelaySeconds: 30
periodSeconds: 30
port: 6060
path: /healthz
# Require three failures to tolerate transient errors.
failureThreshold: 3
initialDelaySeconds: 90
periodSeconds: 60
timeoutSeconds: 30
{{- with .Values.images.pullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}