diff options
author | Nur Rony <nmrony@users.noreply.github.com> | 2017-11-07 22:03:14 +0600 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2017-11-07 08:03:14 -0800 |
commit | 47039f645ffa5e59d1d32aeee8e2cb432035f78a (patch) | |
tree | 17fd8dac357c45b8b27cf4da7554b1f35bcf2f7e /plugins | |
parent | 790712f6f2cae48e8e57239b9ca9e7ab01254253 (diff) | |
download | zsh-47039f645ffa5e59d1d32aeee8e2cb432035f78a.tar.gz zsh-47039f645ffa5e59d1d32aeee8e2cb432035f78a.tar.bz2 zsh-47039f645ffa5e59d1d32aeee8e2cb432035f78a.zip |
feature(plugins): adds kops (kubernetes operations) plugin (#6107)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/kops/kops.plugin.zsh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/kops/kops.plugin.zsh b/plugins/kops/kops.plugin.zsh new file mode 100644 index 000000000..f707f3aff --- /dev/null +++ b/plugins/kops/kops.plugin.zsh @@ -0,0 +1,9 @@ +# Autocompletion for kops (Kubernetes Operations), +# the command line interface to get a production grade +# Kubernetes cluster up and running + +# Author: https://github.com/nmrony + +if [ $commands[kops] ]; then + source <(kops completion zsh) +fi |