1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-26 00:03:29 +02:00

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

Co-authored-by: Kevin S Kirkup <kevin.kirkup@pureport.com>
This commit is contained in:
Kevin S Kirkup
2025-09-01 14:28:12 -04:00
committed by GitHub
parent 2525dae661
commit 10b750af26
2 changed files with 15 additions and 0 deletions
+12
View File
@@ -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)
+3
View File
@@ -0,0 +1,3 @@
if [ $commands[kompose] ]; then
source <(kompose completion zsh)
fi