Skip to content

Commit c831679

Browse files
committed
chart: Fix values-prod standalone use-case
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
1 parent cdd09cd commit c831679

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

charts/podinfo/values-prod.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,25 @@ tolerations: []
159159
affinity: {}
160160

161161
podAnnotations: {}
162+
163+
# https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
164+
probes:
165+
readiness:
166+
initialDelaySeconds: 1
167+
timeoutSeconds: 5
168+
failureThreshold: 3
169+
successThreshold: 1
170+
periodSeconds: 10
171+
liveness:
172+
initialDelaySeconds: 1
173+
timeoutSeconds: 5
174+
failureThreshold: 3
175+
successThreshold: 1
176+
periodSeconds: 10
177+
startup:
178+
enable: false
179+
initialDelaySeconds: 10
180+
timeoutSeconds: 5
181+
failureThreshold: 20
182+
successThreshold: 1
183+
periodSeconds: 10

0 commit comments

Comments
 (0)