DEV Community

Discussion on: What's the plan?

Collapse
 
christiancorbin profile image
Christian Corbin

I found Kelsey’s Kubernetes The Hard Way to be a bit out of date. I mean, it kind of works, but because Kubeadm can now turn up an HA cluster, it’s just rather... hard to follow.

I think the Kubernetes.io tutorials are a bit better. I taught myself K8s basics by writing a vagrant file that does Kubernetes the Hard Way but using Kubeadm (so... the easier way) with HA. Then I used my MBP based 7 VM HA cluster to run the K8s tutorial.

I also found learning Docker Swarm Mode teaches you a lot of good cluster container orchestration basics in an easier environment.

Collapse
 
quinncuatro profile image
Henry Quinn

All great intel. Did you find that what you learned about Docker Swarm Mode translated well to working with K8s?

Collapse
 
christiancorbin profile image
Christian Corbin

Yes. It shows you an easier way where there is typically only one choice on how to do everything, the Docker way.

Storage is a bit harder though, unless you want NFS.

Deployments are as easy as docker-compose.

I think it’s a great light weight, but limited options, entrance to container orchestration. The EE version supports Kubernetes in parallel with Swarm, but I only used CE.

I’m still getting my feet wet in K8s as well, so I’ll be following your journey to see where our paths parallel and diverge. K8s has so much more to learn, but Swarm got me thinking in the container orchestration cluster mind set. It also let me play with Prometheus, Grafana, and Loki, so I feel less overwhelmed heading back into K8s.