This commit is contained in:
Jesse 2017-11-06 15:23:28 +00:00 committed by GitHub
commit e345b9d366
2 changed files with 12 additions and 0 deletions

5
plugins/kops/README.md Normal file
View file

@ -0,0 +1,5 @@
# Kops Plugin
This plugin provides autocompletion for [Kops](https://github.com/kubernetes/kops) commands.
The zsh completion is maintained in the kops repository.

View file

@ -0,0 +1,7 @@
# Autocompletion for kops, the command line interface for creating/managing Kubernetes clusters
#
# Author: https://github.com/whithajess
if [ $commands[kops] ]; then
source <(kops completion zsh)
fi