operator-sdk

SDK for building, testing, and deploying Kubernetes operators

brewmacoslinux
Try with needOr install directly
Source

About

SDK for building Kubernetes applications

Commands

operator-sdk

Examples

Create a new Go-based operator project$ operator-sdk init --domain example.com --repo github.com/example/my-operator
Generate a new API and controller for a custom resource$ operator-sdk create api --group myapp --version v1 --kind MyApp --resource --controller
Build and push operator image to registry$ operator-sdk make docker-build docker-push IMG=quay.io/example/my-operator:v0.1.0