mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
kops: add README (#7358)
This commit is contained in:
commit
5ca3efa17f
2 changed files with 12 additions and 6 deletions
12
plugins/kops/README.md
Normal file
12
plugins/kops/README.md
Normal file
|
@ -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)
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue