Skip to content

Commit 5195a97

Browse files
author
pensh
committed
Update the default value of liveness and readiness probe for azure spring apps
1 parent f24ab84 commit 5195a97

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/spring-apps/how-to-configure-health-probes-graceful-termination.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,25 +256,25 @@ This section provides answers to frequently asked questions about using health p
256256
"startupProbe": null,
257257
"livenessProbe": {
258258
"disableProbe": false,
259-
"failureThreshold": 24,
260-
"initialDelaySeconds": 60,
259+
"failureThreshold": 3,
260+
"initialDelaySeconds": 300,
261261
"periodSeconds": 10,
262262
"probeAction": {
263263
"type": "TCPSocketAction"
264264
},
265265
"successThreshold": 1,
266-
"timeoutSeconds": 1
266+
"timeoutSeconds": 3
267267
},
268268
"readinessProbe": {
269269
"disableProbe": false,
270270
"failureThreshold": 3,
271271
"initialDelaySeconds": 0,
272-
"periodSeconds": 10,
272+
"periodSeconds": 5,
273273
"probeAction": {
274274
"type": "TCPSocketAction"
275275
},
276276
"successThreshold": 1,
277-
"timeoutSeconds": 1
277+
"timeoutSeconds": 3
278278
}
279279
```
280280

0 commit comments

Comments
 (0)