From 1d1f3edd65dc582fc86fec4f583afca384f7653f Mon Sep 17 00:00:00 2001 From: Rohinton Kazak Date: Thu, 17 Mar 2022 19:30:49 -0700 Subject: [PATCH] Update cheatsheet.md typo ? --- content/en/docs/reference/kubectl/cheatsheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/reference/kubectl/cheatsheet.md b/content/en/docs/reference/kubectl/cheatsheet.md index 8d995efb49..3eaeb17ca9 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -238,7 +238,7 @@ kubectl rollout status -w deployment/frontend # Watch rolling kubectl rollout restart deployment/frontend # Rolling restart of the "frontend" deployment -cat pod.json | kubectl replace -f - # Replace a pod based on the JSON passed into std +cat pod.json | kubectl replace -f - # Replace a pod based on the JSON passed into stdin # Force replace, delete and then re-create the resource. Will cause a service outage. kubectl replace --force -f ./pod.json