Saltar al contenido principal

Steps to Install Popular Kubernetes Distros

We'll explore the installation process of each distro, enjoy the journey through creating Kubernetes clusters using some bash scripts I created for you! Download the scripts below. 👇🏽

I decided to use plain bash scripts to remove any additional complexity in installing Ansible, Terraform, Argo, or other tools and external dependencies like Python, or external libraries, which also would remove the fat that consumes extra resources: CPU, RAM, and disk space that you may need to install the distros.

Click on each of the tabs to complete the whole installation. I have tried to separated each tab depending on the different goals.

Follow the video above for specifics.


# download the K0s binary
curl -sSLf https://get.k0s.sh | sudo sh
# install K0s
k0s install controller --enable-worker
systemctl daemon-reload
k0s start
# check the status
k0s status
k0s kubectl get nodes
watch 'k0s kubectl get pod --all-namespaces'
k0s kubectl get nodes
# create a token to join workers to the cluster
k0s token create --role=worker > token-file

Don't forget to like the video and share if you learned somemthing useful. 🤓

🐧 Enjoy coding, enjoy life, go Rebels! ✊🏽 ☁️ 🚀

References and Resources

📖 La Rebelion Blog. ✊🏽
📽️ Full video
👉 Subscribe to "La Rebelion" community for more tech insights, tutorials, and breakthroughs.
💻 K1s Terminal simplifies Kubernetes and Cloud-Native Operations.

Let's innovate together! 🌟💡

Bonus

You can also dowload the scripts I created based on the lab you just completed above.