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: 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 }}