Merge pull request #30294 from bradbeck/zsh-completion

Fix zsh completion setup
This commit is contained in:
Kubernetes Prow Robot
2021-11-22 18:14:16 -08:00
committed by GitHub
9 changed files with 9 additions and 9 deletions
@@ -16,7 +16,7 @@ If you have an alias for kubectl, you can extend shell completion to work with t
```zsh
echo 'alias k=kubectl' >>~/.zshrc
echo 'complete -F __start_kubectl k' >>~/.zshrc
echo 'compdef __start_kubectl k' >>~/.zshrc
```
After reloading your shell, kubectl autocompletion should be working.