From 40499ac391ecfffb05baedf2c573e9733467d42e Mon Sep 17 00:00:00 2001 From: Antoine Pelisse Date: Tue, 7 Jan 2020 16:47:40 -0800 Subject: [PATCH] Add "rollout restart" to cheatsheet (#18224) --- content/en/docs/reference/kubectl/cheatsheet.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/reference/kubectl/cheatsheet.md b/content/en/docs/reference/kubectl/cheatsheet.md index 2d91a0ca34..19c2529008 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -207,6 +207,7 @@ kubectl rollout history deployment/frontend # Check the his kubectl rollout undo deployment/frontend # Rollback to the previous deployment kubectl rollout undo deployment/frontend --to-revision=2 # Rollback to a specific revision kubectl rollout status -w deployment/frontend # Watch rolling update status of "frontend" deployment until completion +kubectl rollout restart deployment/frontend # Rolling restart of the "frontend" deployment # deprecated starting version 1.11