浏览代码

kops: add README (#7358)

Marc Cornellà 6 年之前
父节点
当前提交
5ca3efa17f
共有 2 个文件被更改,包括 12 次插入6 次删除
  1. 12 0
      plugins/kops/README.md
  2. 0 6
      plugins/kops/kops.plugin.zsh

+ 12 - 0
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)

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