Saurabh:
Hi,
I took a practice test on killer.sh and not sure if I missed any instruction there as I wasn’t able to auto-complete commands like create, --image, etc.
unnivkn:
Run this BASH Kubectl autocomplete from cheat sheet:
source <(kubectl completion bash) # setup autocomplete in bash into the current shell, bash-completion package should be installed first.
echo “source <(kubectl completion bash)” >> ~/.bashrc # add autocomplete permanently to your bash shell.
alias k=kubectl
complete -F __start_kubectl k
then try to run your commands(use namespace always in the begining): eg: k -n my-namespace get po
Saurabh:
Thanks much! Will try