Posts tagged: k8s

All posts with the tag "k8s"

kind cluster

kind is a very useful tool to quickly standup and teardown kubernetes clusters. I use it to run clusters locally. Generally they are short lived clusters for trying, testing, and learning about kubernetes.

Kind is Kubernetes in Docker, its very fast to get a new cluster up and running. Other than checking a box in docker desktop it is the easiest way currently to get a cluster up and running. I’ve used docker desktop for k8s before I really developed on k8s and it was buggy at the time and sometimes started and sometimes didn’t, when it didnt I had no idea how to fix it. I’d suggest kind as the best option to get a cluster up and running locally.

If you are looking for a production ready cluster this is not it. I really like k3s. At the time that I chose k3s it was the most lightweight option that easily supported multi-node clusters.

...

In my homelab kubernetes cluster I am using kubeseal to encrypt secrets. I have been using it successfully for a few ...