// TODO(user): Add simple overview of use/purpose
// TODO(user): An in-depth paragraph about your project and overview of use
A kubernetes cluster is required to run the operator.
kind is recommended for local development. Install
kind and create a cluster:
brew install kind
kind create clusterThis will create a new kind cluster with the name kind. The kubernetes context
will be called kind-kind.
Tilt is a tool for local development of Kubernetes
applications. Install tilt:
brew install tiltkubebuilder is a tool for
building Kubernetes operators. Install kubebuilder:
brew install kubebuilderThere are settings for Tilt that can be configured using a tilt-settings.json
file. The settings file is not checked into source control. A sample settings
file is provided in tilt-settings.sample.json. To use the sample settings
file, copy it to tilt-settings.json
By default, Tilt is configured to only allow connections to the following Kubernetes contexts:
docker-desktopkind-kindminikubeorbstack
Please add any additional contexts to the allowedContexts list in your
tilt-settings.json file.
tilt upgo generate ./...