From d1ceddba29b31d56d2fdfc7f39a8c8ab4a325120 Mon Sep 17 00:00:00 2001 From: codyc <37271623+thecrudge@users.noreply.github.com> Date: Fri, 26 Apr 2019 16:06:22 -0500 Subject: [PATCH] fixed indentation for kubectl config view (#14060) fixed indentation for kubectl config view --- content/en/docs/reference/kubectl/cheatsheet.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/docs/reference/kubectl/cheatsheet.md b/content/en/docs/reference/kubectl/cheatsheet.md index 9be0d4b54135e..665a84330ed76 100644 --- a/content/en/docs/reference/kubectl/cheatsheet.md +++ b/content/en/docs/reference/kubectl/cheatsheet.md @@ -56,7 +56,9 @@ detailed config file information. kubectl config view # Show Merged kubeconfig settings. # use multiple kubeconfig files at the same time and view merged config -KUBECONFIG=~/.kube/config:~/.kube/kubconfig2 kubectl config view +KUBECONFIG=~/.kube/config:~/.kube/kubconfig2 + +kubectl config view # get the password for the e2e user kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'