Update pod-lifecycle.md

I think there is a typo, `readiness problem` needs to be `readiness probe`.
pull/29096/head
Vijay 2021-07-23 17:09:19 +12:00 committed by GitHub
parent 0ef9001c5e
commit 626b101340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ is different from the liveness probe.
If your app has a strict dependency on back-end services, you can implement both
a liveness and a readiness probe. The liveness probe passes when the app itself
is healthy, but the readiness problem additionally checks that each required
is healthy, but the readiness probe additionally checks that each required
back-end service is available. This helps you avoid directing traffic to Pods
that can only respond with error messages.