From cc85c292f38cd9e938ea4ff22cc87d2a7953c71b Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Tue, 1 Aug 2017 02:00:28 -0700 Subject: [PATCH] Reimplement PR #4552 --- docs/concepts/workloads/controllers/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/workloads/controllers/deployment.md b/docs/concepts/workloads/controllers/deployment.md index 2401927eef..7e9fbd5964 100644 --- a/docs/concepts/workloads/controllers/deployment.md +++ b/docs/concepts/workloads/controllers/deployment.md @@ -120,7 +120,7 @@ and in any existing Pods that the ReplicaSet may have. ## Updating a Deployment **Note:** A Deployment's rollout is triggered if and only if the Deployment's pod template (that is, `.spec.template`) -is changed, for example if the labels or container images of the templaet are updated. Other updates, such as scaling the Deployment, do not trigger a rollout. +is changed, for example if the labels or container images of the template are updated. Other updates, such as scaling the Deployment, do not trigger a rollout. Suppose that we now want to update the nginx Pods to use the `nginx:1.9.1` image instead of the `nginx:1.7.9` image.