Creating a K3s Cluster Using EC2
As part of my preparation for the GitHub Actions certification, I’ve been itching to get some hands-on experience deploying to a Kubernetes cluster. I have one requirement, I do not need the cluster running all the time. Leaving it idle would just rack up unnecessary costs. My solution? A cloud computer I can use as a controlplane node which I can easily spin up and down as needed. After doing some research, I decided to go with k3s. It’s lightweight, simple to use, and perfectly suited for my needs. For hosting, I chose AWS EC2 because I’m already familiar with it, and it offers a straightforward experience. ...