From 202ff3b15d5780729888c06265971fc4865c49f9 Mon Sep 17 00:00:00 2001 From: lucperkins Date: Mon, 9 Jul 2018 13:52:42 -0700 Subject: [PATCH] Fix error in command syntax --- 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 87bf02a899..55f59aed91 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -254,7 +254,7 @@ $ kubectl api-resources --namespaced=true # All namespaced resources $ kubectl api-resources --namespaced=false # All non-namespaced resources $ kubectl api-resources -o name # All resources with simple output (just the resource name) $ kubectl api-resources -o wide # All resources with expanded (aka "wide") output -$ kubectl api-resources --verbs=[list, get] # All resources that support the "list" and "get" request verbs +$ kubectl api-resources --verbs=list,get # All resources that support the "list" and "get" request verbs $ kubectl api-resources --api-group=extensions # All resources in the "extensions" API group ```