diff options
author | Marc Cornellà <marc.cornella@live.com> | 2018-10-28 13:22:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 13:22:53 +0100 |
commit | 5ca3efa17f04fc555eb20d40c87678b0a9b5234d (patch) | |
tree | f767059b9002cf1a2ae48f76cb72f1dc2e94f996 | |
parent | 684feffc355df95c804a6a32196248bacfefebe7 (diff) | |
parent | a58dc3232332db61f0e8244bcf0416aaef5d6fe0 (diff) | |
download | zsh-5ca3efa17f04fc555eb20d40c87678b0a9b5234d.tar.gz zsh-5ca3efa17f04fc555eb20d40c87678b0a9b5234d.tar.bz2 zsh-5ca3efa17f04fc555eb20d40c87678b0a9b5234d.zip |
kops: add README (#7358)
-rw-r--r-- | plugins/kops/README.md | 12 | ||||
-rw-r--r-- | plugins/kops/kops.plugin.zsh | 6 |
2 files changed, 12 insertions, 6 deletions
diff --git a/plugins/kops/README.md b/plugins/kops/README.md new file mode 100644 index 000000000..5d9b5f8d6 --- /dev/null +++ b/plugins/kops/README.md @@ -0,0 +1,12 @@ +# kops + +This plugin provides completion for [kops](https://github.com/kubernetes/kops) (Kubernetes Operations), +the command line interface to get a production grade Kubernetes cluster up and running. + +To use it, add `kops` to the plugins array in your zshrc file. + +``` +plugins=(... kops) +``` + +**Author:** [@nmrony](https://github.com/nmrony) diff --git a/plugins/kops/kops.plugin.zsh b/plugins/kops/kops.plugin.zsh index f707f3aff..0c38ce2df 100644 --- a/plugins/kops/kops.plugin.zsh +++ b/plugins/kops/kops.plugin.zsh @@ -1,9 +1,3 @@ -# 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 |