Build Kubernetes from source
It is crucial to know how to build Kubernetes from source if you want to implement new features.
$ git clone https://github.com/GoogleCloudPlatform/kubernetes |
On a different window, run the following
$ cluster/kubectl.sh config set-cluster local --server=http://127.0.0.1:8080 --insecure-skip-tls-verify=true |
On yet another different window, run the following command to run kubelet on command line and see verbose logging message
$ pkill -9 kubelet |
You are good to go! Happy hacking with k8s!
Comments