From ef36140de289e5d6fdf64947c8777173ead895f8 Mon Sep 17 00:00:00 2001 From: Ziqi Zhao Date: Thu, 7 Sep 2017 01:12:22 +0800 Subject: [PATCH] Signed-off-by: Ziqi Zhao Fix the mistakes in the "StatefulSet Basics" In the section "Updating StatefulSets", when the update strategy is OnDelete and the web-0 pod is updated by deleting it manually. Then the web-1 and web-2 should still have the original image. But in the current version, the article says that the web-0 and web-1 still have the original image. --- docs/tutorials/stateful-application/basic-stateful-set.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/stateful-application/basic-stateful-set.md b/docs/tutorials/stateful-application/basic-stateful-set.md index 32420ddf8b..557e8488bd 100644 --- a/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/docs/tutorials/stateful-application/basic-stateful-set.md @@ -499,7 +499,7 @@ web-1 gcr.io/google_containers/nginx-slim:0.8 web-2 gcr.io/google_containers/nginx-slim:0.8 {% endraw %}``` -`web-0` has had its image updated, but `web-0` and `web-1` still have the original +`web-0` has had its image updated, but `web-1` and `web-2` still have the original image. Complete the update by deleting the remaining Pods. ```shell