From a9b493e7b24f91a1636d7a9010cf7fbe7b3d8b91 Mon Sep 17 00:00:00 2001 From: Mariyan Dimitrov Date: Sun, 12 Jan 2020 17:46:41 +0200 Subject: [PATCH] en: Remove duplicate example With #16974 and the removal of --include-uninitialized flag, the second and third examples of kubectl delete become equal, thus leading to duplication and being confusing. Suggest to remove the duplicate and replace it with another example in the future if needed. Observed in v1.16 and v1.17 documentation. Signed-off-by: Mariyan Dimitrov --- content/en/docs/reference/kubectl/overview.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/en/docs/reference/kubectl/overview.md b/content/en/docs/reference/kubectl/overview.md index a84f60ab6df0e..471f3412328a2 100644 --- a/content/en/docs/reference/kubectl/overview.md +++ b/content/en/docs/reference/kubectl/overview.md @@ -343,9 +343,6 @@ kubectl delete -f pod.yaml # Delete all the pods and services that have the label name=. kubectl delete pods,services -l name= -# Delete all the pods and services that have the label name=. -kubectl delete pods,services -l name= - # Delete all pods, including uninitialized ones. kubectl delete pods --all ```