Skip to content

Commit

Permalink
chore(helm): update controller k8s probe config (#2628)
Browse files Browse the repository at this point in the history
  • Loading branch information
tianweidut authored Aug 19, 2023
1 parent 420961e commit 2b50faf
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions docker/charts/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,28 +57,29 @@ spec:
httpGet:
path: /actuator/health
port: {{ .Values.controller.managementPort }}
initialDelaySeconds: 50
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 90
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 5
readinessProbe:
httpGet:
path: /
port: {{ .Values.controller.containerPort }}
initialDelaySeconds: 50
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 90
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 5
startupProbe:
httpGet:
path: /
port: {{ .Values.controller.containerPort }}
initialDelaySeconds: 30
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 90
failureThreshold: 15
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 60
env:
{{ include "chart.mirror.env" . | nindent 12 }}
- name: JAR
Expand Down

0 comments on commit 2b50faf

Please sign in to comment.