From 670e08dec94b045dc3f000e032cab03ff12c6dc8 Mon Sep 17 00:00:00 2001 From: Vardan <31190485+vardanaloyan@users.noreply.github.com> Date: Sat, 27 Jan 2024 10:48:22 +0100 Subject: [PATCH] Update quick-reference.md Correct remove annotation command --- content/en/docs/reference/kubectl/quick-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/reference/kubectl/quick-reference.md b/content/en/docs/reference/kubectl/quick-reference.md index d0140aebf2..c39d0cc928 100644 --- a/content/en/docs/reference/kubectl/quick-reference.md +++ b/content/en/docs/reference/kubectl/quick-reference.md @@ -287,7 +287,7 @@ kubectl label pods my-pod new-label=awesome # Add a Label kubectl label pods my-pod new-label- # Remove a label kubectl label pods my-pod new-label=new-value --overwrite # Overwrite an existing value kubectl annotate pods my-pod icon-url=http://goo.gl/XXBTWq # Add an annotation -kubectl annotate pods my-pod icon- # Remove annotation +kubectl annotate pods my-pod icon-url- # Remove annotation kubectl autoscale deployment foo --min=2 --max=10 # Auto scale a deployment "foo" ```