This repository contains hands-on instructions for the Containers and Kubernetes fundamentals and Kubernetes fundamentals trainings.
Each exercise is a tutorial written for Google Cloud Shell, the hosted development environment managing resources hosted on Google Cloud Platform.
Allow completion in kubectl command (activate with TAB
). bash-completion package should be installed first :
source <(kubectl completion bash)
Create a shortcut alias k
to kubectl
and activation completion for this alias :
alias k=kubectl
complete -o default -F __start_kubectl k