Skip to content

Commit

Permalink
editoast: configure readiness probe timers
Browse files Browse the repository at this point in the history
  • Loading branch information
ElysaSrc committed Feb 25, 2025
1 parent 024541c commit 4f3ed5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions templates/editoast/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ spec:
httpGet:
path: /health
port: http
initialDelaySeconds: {{ .Values.services.editoast.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.services.editoast.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.services.editoast.readinessProbe.timeoutSeconds }}
{{- end }}

env:
Expand Down
3 changes: 3 additions & 0 deletions templates/stateful_editoast/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ spec:
httpGet:
path: /health
port: http
initialDelaySeconds: {{ .Values.services.statefulEditoast.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.services.statefulEditoast.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.services.statefulEditoast.readinessProbe.timeoutSeconds }}
{{- end }}

env:
Expand Down
6 changes: 6 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ services:
timeoutSeconds: 3
readinessProbe:
disabled: false
initialDelaySeconds: 05
periodSeconds: 10
timeoutSeconds: 3
hpa:
enabled: true
minReplicas: 2
Expand Down Expand Up @@ -201,6 +204,9 @@ services:
timeoutSeconds: 3
readinessProbe:
disabled: false
initialDelaySeconds: 05
periodSeconds: 10
timeoutSeconds: 3
annotations: {}
labels: {}
nodeSelector: {}
Expand Down

0 comments on commit 4f3ed5c

Please sign in to comment.