mychanges

This commit is contained in:
Ghasem Shirazi 2022-12-05 09:51:00 -08:00
commit a50fcdfb02
105 changed files with 27351 additions and 0 deletions

View file

@ -0,0 +1,11 @@
# Operator SDK
[Operator SDK](https://sdk.operatorframework.io/) is a component of the Operator Framework, an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way.
To use it, add `operator-sdk` to the plugins array of your zshrc file:
```sh
plugins=(... operator-sdk)
```

View file

@ -0,0 +1,4 @@
if [ $commands[operator-sdk] ]; then
source <(operator-sdk completion zsh)
compdef _operator-sdk operator-sdk
fi