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:
|
||||
- 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 }}
|
||||
|
|
Loading…
Reference in a new issue