Tuesday, June 17, 2025

K3s

 Finally setup my homelab which is working great and the first thing I did is install k3s.  Wow, super simple.  See commands below.  

curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--disable=helm-controller" sh -

Note K3s was created by Rancher.

https://k3s.io/

https://www.digitalocean.com/community/tutorials/how-to-setup-k3s-kubernetes-cluster-on-ubuntu

The only tweak I did was to disable the helm controller because I want to use Flux.  Flux has a helm controller built into it.

From the Flux installation logs we can see Helm controller was installed

► confirming components are healthy

✔ helm-controller: deployment ready


No comments:

Post a Comment

Kubernetes Service

 What is the point of a Service in Kubernetes Accessing a pod by name or IP directly is fragile and not recommended for long-term connectiv...