Adventures With Kubeadm on OpenSUSE Kubic
This video is a little kludgy. It was literally my first time putting together the cluster and if you notice at the end, it doesn’t actually work. None of the worker nodes are actually usable. Hopefully that will be fixed soon.
linux-3q2c:~ # kubectl get nodes NAME STATUS ROLES AGE VERSION linux-3q2c NotReady master 3m v1.11.1 linux-fykp NotReady
In the meantime, thanks to this post, I’ve reinstalled with cri-o and now have a fully functional cluster.
jsevans@jserver:~> kubectl get nodes
NAME STATUS ROLES AGE VERSION
linux-3q2c Ready master 2h v1.11.1
linux-fykp Ready
What have I been doing with my new cluster?
I installed the Kubernetes dashboard, Helm, and Wordpress with Helm. I’ve also had to really dig into what it means to use RBAC. In CaaS Platform 1-3, a lot of your RBAC stuff was already done for you. Now I’ve had to specifically set RBAC to get the Dashboard credentials working as well as to get Tiller working. It’s a learning experience and it’s good to get these fundamentals down pat.