Browse Source

feature(plugins): adds kops (kubernetes operations) plugin (#6107)

Nur Rony 7 years ago
parent
commit
47039f645f
1 changed files with 9 additions and 0 deletions
  1. 9 0
      plugins/kops/kops.plugin.zsh

+ 9 - 0
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