We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29353df commit 55bcdb2Copy full SHA for 55bcdb2
content/en/docs/reference/kubectl/quick-reference.md
@@ -78,7 +78,7 @@ kubectl config view --raw
78
kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'
79
80
# get the certificate for the e2e user
81
-kubectl config view --raw -ojsonpath="{.users[?(.name == 'e2e')].user.client-certificate-data}" | base64 -d
+kubectl config view --raw -ojsonpath='{.users[?(.name == 'e2e')].user.client-certificate-data}' | base64 -d
82
83
kubectl config view -o jsonpath='{.users[].name}' # display the first user
84
kubectl config view -o jsonpath='{.users[*].name}' # get a list of users
0 commit comments