Day 1: Build a basic CRD using KubeBuilder Day 2: BYO CRD controller exercise 1 Day 3: BYO CRD controller exercise 2
Create a deployment
kubectl create deployment hello-node --image=k8s.gcr.io/echoserver:1.4
Expose pod to the public internet
kubectl expose deployment hello-node --type=LoadBalancer --port=8080
List addonos
minikube addons list
Enable addons
minikube addons enable metrics-server
Disable addons
minikube addons disable metrics-server
Other
kubectl get pod,svc -n kube-system
For the custom resources created with kubebuilder you will see default rbac rules; edit these to make sure that the scope of permissions provided match your use case because the default configuration might be too open.