Info

Kubebuilder is a Go SDK for Kubernetes.

Map Of Content

Creating A New Project

kubebuilder init --domain=example.com

Adding A New API

kubebuilder create api --group cache --version v1alpha1 --kind Memcached

The command will prompt you:

Generate Manifests And Install Then

make manifests && make install

Run Application

# This will run the application locally using your local kube config
make run