diff --git a/docs/gitbook/tutorials/zero-downtime-deployments.md b/docs/gitbook/tutorials/zero-downtime-deployments.md index 4eb73bb4..e40d8e67 100644 --- a/docs/gitbook/tutorials/zero-downtime-deployments.md +++ b/docs/gitbook/tutorials/zero-downtime-deployments.md @@ -27,7 +27,7 @@ You application should expose a HTTP endpoint that Kubernetes can call to determ your app transitioned to a broken state from which it can't recover and needs to be restarted. ```yaml -readinessProbe: +livenessProbe: exec: command: - wget @@ -49,7 +49,7 @@ You application should expose a HTTP endpoint that Kubernetes can call to determ your app is ready to receive traffic. ```yaml -livenessProbe: +readinessProbe: exec: command: - wget