Skip to content

Commit

Permalink
Update proposal for configure-liveness-readiness-probes.md (kubernete…
Browse files Browse the repository at this point in the history
…s#11613)

* Update proposal for configure-liveness-readiness-probes.md

Proposal regarding [issue 11587](kubernetes#11587)

* ✏️ corrected typo

* ✏️ corrected sentence

* Update configure-liveness-readiness-probes.md
  • Loading branch information
bgauduch authored and immutablet committed Jan 9, 2019
1 parent 3638c8e commit 0aa82ca
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -235,12 +235,17 @@ livenessProbe:
Sometimes, applications are temporarily unable to serve traffic.
For example, an application might need to load large data or configuration
files during startup. In such cases, you don't want to kill the application,
files during startup, or depend on external services after startup.
In such cases, you don't want to kill the application,
but you don’t want to send it requests either. Kubernetes provides
readiness probes to detect and mitigate these situations. A pod with containers
reporting that they are not ready does not receive traffic through Kubernetes
Services.
{{< note >}}
Readiness probes runs on the container during its whole lifecycle.
{{< /note >}}
Readiness probes are configured similarly to liveness probes. The only difference
is that you use the `readinessProbe` field instead of the `livenessProbe` field.
Expand Down

0 comments on commit 0aa82ca

Please sign in to comment.