Kubectl command
1. Kubectl Autocomplete 1) Bash # source > ~/.bashrc // add autocomplete permanently to your bash shell. 2) Zsh # source > ~/.zshrc // add autocomplete permanently to your zsh shell 2. Kubectl Context and Configuration # kubectl config view // Show Merged kubeconfig settings. // Get the password for the e2e user # kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}' # kub..
2020.10.16