Fix nested single quotes in example command
parent
e94219771d
commit
ded9023bcd
|
@ -78,7 +78,7 @@ kubectl config view --raw
|
|||
kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'
|
||||
|
||||
# get the certificate for the e2e user
|
||||
kubectl config view --raw -o jsonpath='{.users[?(.name == 'e2e')].user.client-certificate-data}' | base64 -d
|
||||
kubectl config view --raw -o jsonpath='{.users[?(.name == "e2e")].user.client-certificate-data}' | base64 -d
|
||||
|
||||
kubectl config view -o jsonpath='{.users[].name}' # display the first user
|
||||
kubectl config view -o jsonpath='{.users[*].name}' # get a list of users
|
||||
|
|
Loading…
Reference in New Issue