zsh auto-completion

Some optional configuration for zsh auto-completion.

The kubectl completion script for Zsh can be generated with the command kubectl completion zsh. Sourcing the completion script in your shell enables kubectl autocompletion.

To do so in all your shell sessions, add the following to your ~/.zshrc file:

  1. source <(kubectl completion zsh)

If you have an alias for kubectl, you can extend shell completion to work with that alias:

  1. echo 'alias k=kubectl' >>~/.zshrc
  2. echo 'complete -F __start_kubectl k' >>~/.zshrc

After reloading your shell, kubectl autocompletion should be working.

If you get an error like complete:13: command not found: compdef, then add the following to the beginning of your ~/.zshrc file:

  1. autoload -Uz compinit
  2. compinit