feat(kompost): Add plugin for kompose (#7729)

Co-authored-by: Kevin S Kirkup <kevin.kirkup@pureport.com>
master
Kevin S Kirkup 6 months ago committed by GitHub
parent 2525dae661
commit 10b750af26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      plugins/kompose/README.md
  2. 3
      plugins/kompose/kompose.plugin.zsh

@ -0,0 +1,12 @@
# kompose
This plugin provides completion for [kompose](https://github.com/kubernetes/kompose),
to migrate from docker compose to Kubernetes resource definitions.
To use it, add `kompose` to the plugins array in your zshrc file.
```
plugins=(... kompose)
```
**Author:** [@kevinkirkup](https://github.com/kevinkirkup)

@ -0,0 +1,3 @@
if [ $commands[kompose] ]; then
source <(kompose completion zsh)
fi
Loading…
Cancel
Save