From c3245e47d7dce41c481f29db126c36aa2e264eb7 Mon Sep 17 00:00:00 2001 From: AliRezaTaleghani Date: Tue, 16 Feb 2021 19:56:24 +0100 Subject: [PATCH] Update cheatsheet.md adding blank space between examples --- 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 4d969fd7dc..22be0b48ed 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -374,6 +374,7 @@ Examples using `-o=custom-columns`: ```bash # All images running in a cluster kubectl get pods -A -o=custom-columns='DATA:spec.containers[*].image' + # All images running in namespace: default, grouped by Pod kubectl get pods --namespace default --output=custom-columns="NAME:.metadata.name,IMAGE:.spec.containers[*].image"