Skip to content

Commit 06cf75a

Browse files
authored
Merge pull request #45881 from Gertoperto/patch-1
Fix nested single quotes in example command
2 parents f5180c7 + ded9023 commit 06cf75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/reference/kubectl/quick-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ kubectl config view --raw
7878
kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'
7979

8080
# get the certificate for the e2e user
81-
kubectl config view --raw -o jsonpath='{.users[?(.name == 'e2e')].user.client-certificate-data}' | base64 -d
81+
kubectl config view --raw -o jsonpath='{.users[?(.name == "e2e")].user.client-certificate-data}' | base64 -d
8282

8383
kubectl config view -o jsonpath='{.users[].name}' # display the first user
8484
kubectl config view -o jsonpath='{.users[*].name}' # get a list of users

0 commit comments

Comments
 (0)