Info
Kubebuilder is a Go SDK for Kubernetes.
Map Of Content
Creating A New Project
kubebuilder init --domain=example.comAdding A New API
kubebuilder create api --group cache --version v1alpha1 --kind MemcachedThe command will prompt you:
Generate Manifests And Install Then
make manifests && make installRun Application
# This will run the application locally using your local kube config
make run