Kubectl Context and Configuration: 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 # get the password for the e2e user kubectl config view -o jsonpath='{.users[?(@.name == “e2e”)].user.password}’ kubectl config view -o jsonpath='{.users[].name}’ # display the first user kubectl… Continue reading kubectl Cheat Sheet