⛵ Cluster Template
Welcome to my opinionated and extensible template for deploying a single Kubernetes cluster.
The goal of this project is to make it easier for people interested in using Kubernetes to deploy a cluster at home on bare-metal or VMs.
✨ Features
The features included will depend on the type of configuration you want to use. There are currently 3 different types of configurations available with this template.
-
"Bare cluster" - a distrubition of your choosing (k0s, k3s or Talos) that comes with only kube-vip (k0s/k3s) and Cilium installed with the cluster.
- Apps included: None
-
"Flux cluster" - Add-on to the "Bare cluster" to deploy an opinionated implementation of Flux using GitHub as GitOps provider and sops to manage secrets.
- Apps included: flux, cert-manager, spegel, reloader and openebs in Local PV / Hostpath mode.
-
"Flux cluster with Cloudflare" - Add-on to the "Flux cluster" that provides DNS and SSL with Cloudflare. Cloudflare Tunnel is also included to provide external access to certain applications deployed in your cluster.
- Apps included: ingress-nginx, external-dns and cloudflared.
Other features include:
- A Renovate-ready repository with pull request diffs provided by flux-local
- Integrated GitHub Actions with helpful workflows.
💻 Machine Preparation
Hopefully some of this peeked your interests! If you are marching forward, now is a good time to choose whether you will deploy a Kubernetes cluster with k0s, k3s or Talos.
System requirements
Note
- The included behaviour of Talos, k3s or k0s is that all nodes are able to run workloads, including the controller nodes. Worker nodes are therefore optional.
- Do you have 3 or more nodes? It is highly recommended to make 3 of them controller nodes for a highly available control plane.
- Running the cluster on Proxmox VE? My thoughts and recommendations about that are documented here.
Role | Cores | Memory | System Disk |
---|---|---|---|
Control | 4 (6*) | 8GB (24GB*) | 100GB (500GB*) SSD/NVMe |
Worker | 4 (6*) | 8GB (24GB*) | 100GB (500GB*) SSD/NVMe |
* recommended |
Talos
-
Download the latest stable release of Talos from their GitHub releases. You will want to grab either
metal-amd64.iso
ormetal-rpi_generic-arm64.raw.xz
depending on your system. -
Take note of the OS drive serial numbers you will need them later on.
-
Flash the iso or raw file to a USB drive and boot to Talos on your nodes with it.
-
Continue on to 🚀 Getting Started
k3s or k0s (AMD64)
-
Download the latest stable release of Debian from here, then follow this guide to get it installed. Deviations from the guide:
Choose "Guided - use entire disk" Choose "All files in one partition" Delete Swap partition Uncheck all Debian desktop environment options
-
[Post install] Remove CD/DVD as apt source
su - sed -i '/deb cdrom/d' /etc/apt/sources.list apt update exit
-
[Post install] Enable sudo for your non-root user
su - apt update apt install -y sudo usermod -aG sudo ${username} echo "${username} ALL=(ALL) NOPASSWD:ALL" | tee /etc/sudoers.d/${username} exit newgrp sudo sudo apt update
-
[Post install] Add SSH keys (or use
ssh-copy-id
on the client that is connecting)📍 First make sure your ssh keys are up-to-date and added to your github account as instructed.
mkdir -m 700 ~/.ssh sudo apt install -y curl curl https://github.com/${github_username}.keys > ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys
k3s or k0s (RasPi4)
Click here to read about using a RasPi4
[!IMPORTANT]
- It is recommended to have an 8GB RasPi model. Most important is to boot from an external SSD/NVMe rather than an SD card. This is supported natively, however if you have an early model you may need to update the bootloader first.
- Check the power requirements if using a PoE Hat and a SSD/NVMe dongle.
-
Download the latest stable release of Debian from here. Do not use Raspbian or DietPi or any other flavor Linux OS.
-
Flash the image onto an SSD/NVMe drive.
-
Re-mount the drive to your workstation and then do the following (per the official documentation):
Open 'sysconf.txt' in a text editor and save it upon updating the information below - Change 'root_authorized_key' to your desired public SSH key - Change 'root_pw' to your desired root password - Change 'hostname' to your desired hostname
-
Connect SSD/NVMe drive to the Raspberry Pi 4 and power it on.
-
[Post install] SSH into the device with the
root
user and then create a normal user account withadduser ${username}
-
[Post install] Follow steps 3 and 4 from k3s or k0s (AMD64).
-
[Post install] Install
python3
which is needed by Ansible.sudo apt install -y python3
-
Continue on to 🚀 Getting Started
🚀 Getting Started
Once you have installed Talos or Debian on your nodes, there are six stages to getting a Flux-managed cluster up and runnning.
Note
For all stages below the commands MUST be ran on your personal workstation within your repository directory
🎉 Stage 1: Create a Git repository
-
Create a new public repository by clicking the big green "Use this template" button at the top of this page.
-
Clone your new repo to you local workstation and
cd
into it. -
Continue on to 🌱 Stage 2
🌱 Stage 2: Setup your local workstation
You have two different options for setting up your local workstation.
- First option is using a
devcontainer
which requires you to have Docker and VSCode installed. This method is the fastest to get going because all the required CLI tools are provided for you in my devcontainer image. - The second option is setting up the CLI tools directly on your workstation.
Devcontainer method
-
Start Docker and open your repository in VSCode. There will be a pop-up asking you to use the
devcontainer
, click the button to start using it. -
Continue on to 🔧 Stage 3
Non-devcontainer method
-
Install the most recent version of task, see the installation docs for other supported platforms.
# Homebrew brew install go-task # or, Arch pacman -S --noconfirm go-task && ln -sf /usr/bin/go-task /usr/local/bin/task
-
Install the most recent version of direnv, see the installation docs for other supported platforms.
# Homebrew brew install direnv # or, Arch pacman -S --noconfirm direnv
📍 After
direnv
is installed be sure to hook it into your preferred shell and then runtask workstation:direnv
-
Install the additional required CLI tools
📍 Not using Homebrew or ArchLinux? Try using the generic Linux task below, if that fails check out the Brewfile/Archfile for what CLI tools needed and install them.
# Homebrew task workstation:brew # or, Arch with yay/paru task workstation:arch # or, Generic Linux (YMMV, this pulls binaires in to ./bin) task workstation:generic-linux
-
Setup a Python virual environment by running the following task command.
📍 This commands requires Python 3.11+ to be installed.
task workstation:venv
-
Continue on to 🔧 Stage 3
🔧 Stage 3: Bootstrap configuration
Note
The config.sample.yaml file contain necessary information that is vital to the bootstrap process.
-
Generate the
config.yaml
from the config.sample.yaml configuration file.task init
🔧 Stage 3: Flux
📍 Using SOPS with Age allows us to encrypt secrets and use them with Flux.
-
Create a Age private / public key (this file is gitignored)
task sops:age-keygen
-
Fill out the appropriate vars in
config.yaml
Stage 3: Flux with Cloudflare DNS
Note
To use cert-manager
with the Cloudflare DNS challenge you will need to create a API Token.
-
Head over to Cloudflare and create a API Token by going here.
-
Under the
API Tokens
section click the blueCreate Token
button. -
Click the blue
Use template
button for theEdit zone DNS
template. -
Name your token something like
home-kubernetes
-
Under
Permissions
, click+ Add More
and add each permission below:Zone - DNS - Edit Account - Cloudflare Tunnel - Read
-
Limit the permissions to a specific account and zone resources.
-
Fill out the appropriate vars in
config.yaml
Stage 3: Flux with Cloudflare Tunnel
Note
To expose services to the internet you will need to create a Cloudflare Tunnel.
-
Authenticate cloudflared to your domain
cloudflared tunnel login
-
Create the tunnel
cloudflared tunnel create k8s
-
In the
~/.cloudflared
directory there will be a json file with details you need. Ignore thecert.pem
file. -
Fill out the appropriate vars in
config.yaml
Stage 3: Finishing up
-
Complete filling out the rest of the
config.yaml
configuration file. -
Once done run the following command which will verify and generate all the files needed to continue.
task configure
-
Push you changes to git
📍 Verify all the
*.sops.yaml
and*.sops.yaml
files under./kubernetes
directory is encrypted with SOPSgit add -A git commit -m "Initial commit :rocket:" git push
-
Continue on to ⚡ Stage 4
⚡ Stage 4: Prepare your nodes for Kubernetes
Important
For Talos or k0s skip ahead to ⛵ Stage 5
k3s
📍 Here we will be running an Ansible playbook to prepare your nodes for running a Kubernetes cluster.
-
Ensure you are able to SSH into your nodes from your workstation using a private SSH key without a passphrase (for example using a SSH agent). This lets Ansible interact with your nodes.
-
Install the Ansible dependencies
task ansible:deps
-
Verify Ansible can view your config
task ansible:list
-
Verify Ansible can ping your nodes
task ansible:ping
-
Run the Ansible prepare playbook (nodes wil reboot when done)
task ansible:run playbook=cluster-prepare
-
Continue on to ⛵ Stage 5
⛵ Stage 5: Install Kubernetes
Talos
-
Create Talos Secrets
task talos:gensecret task talos:genconfig
-
Apply Talos Config
task talos:apply
-
Boostrap Talos and get kubeconfig
task talos:bootstrap task talos:kubeconfig node=$master_node_ip_address
-
Install Cilium and kubelet-csr-approver into the cluster
task talos:apply-extras
k3s or k0s
-
Install Kubernetes depending on the distribution you chose
# Install k3s task ansible:run playbook=cluster-installation # or, install k0s task k0s:apply
Cluster validation
-
The
kubeconfig
for interacting with your cluster should have been created in the root of your repository. -
Verify the nodes are online
📍 If this command fails you likely haven't configured
direnv
as mentioned previously in the guide.kubectl get nodes -o wide # NAME STATUS ROLES AGE VERSION # k8s-0 Ready control-plane,etcd,master 1h v1.29.1 # k8s-1 Ready worker 1h v1.29.1
-
Continue on to 🔹 Stage 6
🔹 Stage 6: Install Flux in your cluster
Important
Skip this stage if you have disabled Flux in the config.yaml
-
Verify Flux can be installed
flux check --pre # ► checking prerequisites # ✔ kubectl 1.27.3 >=1.18.0-0 # ✔ Kubernetes 1.27.3+k3s1 >=1.16.0-0 # ✔ prerequisites checks passed
-
Install Flux and sync the cluster to the Git repository
task flux:bootstrap # namespace/flux-system configured # customresourcedefinition.apiextensions.k8s.io/alerts.notification.toolkit.fluxcd.io created # ...
-
Verify Flux components are running in the cluster
kubectl -n flux-system get pods -o wide # NAME READY STATUS RESTARTS AGE # helm-controller-5bbd94c75-89sb4 1/1 Running 0 1h # kustomize-controller-7b67b6b77d-nqc67 1/1 Running 0 1h # notification-controller-7c46575844-k4bvr 1/1 Running 0 1h # source-controller-7d6875bcb4-zqw9f 1/1 Running 0 1h
🎤 Flux w/ Cloudflare verification Steps
Mic check, 1, 2 - In a few moments applications should be lighting up like Christmas in July 🎄
-
Output all the common resources in your cluster.
📍 Feel free to use the provided kubernetes tasks for validation of cluster resources or continue to get familiar with the
kubectl
andflux
CLI tools.task kubernetes:resources
-
⚠️ It might takecert-manager
awhile to generate certificates, this is normal so be patient. -
🏆 Congratulations if all goes smooth you will have a Kubernetes cluster managed by Flux and your Git repository is driving the state of your cluster.
-
🧠 Now it's time to pause and go get some motel motor oil ☕ and admire you made it this far!
📣 Flux w/ Cloudflare post installation
🌐 Public DNS
The external-dns
application created in the networking
namespace will handle creating public DNS records. By default, echo-server-external
and the flux-webhook
are the only subdomains reachable from the public internet. In order to make additional applications public you must set set the correct ingress class name and ingress annotations like in the HelmRelease for echo-server
.
🏠 Home DNS
k8s_gateway
will provide DNS resolution to external Kubernetes resources (i.e. points of entry to the cluster) from any device that uses your home DNS server. For this to work, your home DNS server must be configured to forward DNS queries for ${bootstrap_cloudflare_domain}
to ${bootstrap_k8s_gateway_addr}
instead of the upstream DNS server(s) it normally uses. This is a form of split DNS (aka split-horizon DNS / conditional forwarding).
Tip
Below is how to configure a Pi-hole for split DNS. Other platforms should be similar.
- Apply this file on the Pihole server while substituting the variables
# /etc/dnsmasq.d/99-k8s-gateway-forward.conf
server=/${bootstrap_cloudflare_domain}/${bootstrap_k8s_gateway_addr}
- Restart dnsmasq on the server.
- Query an internal-only subdomain from your workstation (any
internal
class ingresses):dig @${home-dns-server-ip} echo-server-internal.${bootstrap_cloudflare_domain}
. It should resolve to${bootstrap_internal_ingress_addr}
.
If you're having trouble with DNS be sure to check out these two GitHub discussions: Internal DNS and Pod DNS resolution broken.
... Nothing working? That is expected, this is DNS after all!
📜 Certificates
By default this template will deploy a wildcard certificate using the Let's Encrypt staging environment, which prevents you from getting rate-limited by the Let's Encrypt production servers if your cluster doesn't deploy properly (for example due to a misconfiguration). Once you are sure you will keep the cluster up for more than a few hours be sure to switch to the production servers as outlined in config.yaml
.
📍 You will need a production certificate to reach internet-exposed applications through cloudflared
.
🪝 Github Webhook
By default Flux will periodically check your git repository for changes. In order to have Flux reconcile on git push
you must configure Github to send push
events to Flux.
Important
This will only work after you have switched over certificates to the Let's Encrypt Production servers.
-
Obtain the webhook path
📍 Hook id and path should look like
/hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123
kubectl -n flux-system get receiver github-receiver -o jsonpath='{.status.webhookPath}'
-
Piece together the full URL with the webhook path appended
https://flux-webhook.${bootstrap_cloudflare_domain}/hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123
-
Navigate to the settings of your repository on Github, under "Settings/Webhooks" press the "Add webhook" button. Fill in the webhook url and your
bootstrap_flux_github_webhook_token
secret and save.
💥 Nuke
There might be a situation where you want to destroy your Kubernetes cluster. This will completely clean the OS of all traces of the Kubernetes distribution you chose and then reboot the nodes.
# Nuke k3s
task ansible:run playbook=cluster-nuke
# or, Nuke k0s
task k0s:reset
🤖 Renovate
Renovate is a tool that automates dependency management. It is designed to scan your repository around the clock and open PRs for out-of-date dependencies it finds. Common dependencies it can discover are Helm charts, container images, GitHub Actions, Ansible roles... even Flux itself! Merging a PR will cause Flux to apply the update to your cluster.
To enable Renovate, click the 'Configure' button over at their Github app page and select your repository. Renovate creates a "Dependency Dashboard" as an issue in your repository, giving an overview of the status of all updates. The dashboard has interactive checkboxes that let you do things like advance scheduling or reattempt update PRs you closed without merging.
The base Renovate configuration in your repository can be viewed at .github/renovate.json5. By default it is scheduled to be active with PRs every weekend, but you can change the schedule to anything you want, or remove it if you want Renovate to open PRs right away.
🐛 Debugging
Below is a general guide on trying to debug an issue with an resource or application. For example, if a workload/resource is not showing up or a pod has started but in a CrashLoopBackOff
or Pending
state.
-
Start by checking all Flux Kustomizations & Git Repository & OCI Repository and verify they are healthy.
flux get sources oci -A flux get sources git -A flux get ks -A
-
Then check all the Flux Helm Releases and verify they are healthy.
flux get hr -A
-
Then check the if the pod is present.
kubectl -n <namespace> get pods -o wide
-
Then check the logs of the pod if its there.
kubectl -n <namespace> logs <pod-name> -f # or stern -n <namespace> <fuzzy-name>
-
If a resource exists try to describe it to see what problems it might have.
kubectl -n <namespace> describe <resource> <name>
-
Check the namespace events
kubectl -n <namespace> get events --sort-by='.metadata.creationTimestamp'
Resolving problems that you have could take some tweaking of your YAML manifests in order to get things working, other times it could be a external factor like permissions on NFS. If you are unable to figure out your problem see the help section below.
👉 Help
- Make a post in this repository's Github Discussions.
- Start a thread in the
#support
or#flux-cluster-template
channels in the Home Operations Discord server.
❔ What's next
The cluster is your oyster (or something like that). Below are some optional considerations you might want to review.
Ship it
To browse or get ideas on applications people are running, community member @whazor created Kubesearch as a creative way to search Flux HelmReleases across Github and Gitlab.
Storage
The included CSI (openebs in local-hostpath mode) is a great start for storage but soon you might find you need more features like replicated block storage, or to connect to a NFS/SMB/iSCSI server. If you need any of those features be sure to check out the projects like rook-ceph, longhorn, openebs, democratic-csi, csi-driver-nfs, and synology-csi.
Authenticate Flux over SSH
Click here to read guide on adding Flux SSH authentication
Authenticating Flux to your git repository has a couple benefits like using a private git repository and/or using the Flux Image Automation Controllers.
By default this template only works on a public Github repository, it is advised to keep your repository public.
The benefits of a public repository include:
- Debugging or asking for help, you can provide a link to a resource you are having issues with.
- Adding a topic to your repository of
kubesearch
to be included in the Kubesearch results. This search helps people discover different configurations of Helm charts across others Flux based repositories.
-
Generate new SSH key:
ssh-keygen -t ecdsa -b 521 -C "github-deploy-key" -f ./kubernetes/bootstrap/github-deploy.key -q -P ""
-
Paste public key in the deploy keys section of your repository settings
-
Create sops secret in
./kubernetes/bootstrap/github-deploy-key.sops.yaml
with the contents of:apiVersion: v1 kind: Secret metadata: name: github-deploy-key namespace: flux-system stringData: # 3a. Contents of github-deploy-key identity: | -----BEGIN OPENSSH PRIVATE KEY----- ... -----END OPENSSH PRIVATE KEY----- # 3b. Output of curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]' known_hosts: | github.com ssh-ed25519 ... github.com ecdsa-sha2-nistp256 ... github.com ssh-rsa ...
-
Encrypt secret:
sops --encrypt --in-place ./kubernetes/bootstrap/github-deploy-key.sops.yaml
-
Apply secret to cluster:
sops --decrypt ./kubernetes/bootstrap/github-deploy-key.sops.yaml | kubectl apply -f -
-
Update
./kubernetes/flux/config/cluster.yaml
:apiVersion: source.toolkit.fluxcd.io/v1beta2 kind: GitRepository metadata: name: home-kubernetes namespace: flux-system spec: interval: 10m # 6a: Change this to your user and repo names url: ssh://git@github.com/$user/$repo ref: branch: main secretRef: name: github-deploy-key
-
Commit and push changes
-
Force flux to reconcile your changes
flux reconcile -n flux-system kustomization cluster --with-source
-
Verify git repository is now using SSH:
flux get sources git -A
-
Optionally set your repository to Private in your repository settings.
🙌 Related Projects
If this repo is too hot to handle or too cold to hold check out these following projects.
- khuedoan/homelab - Modern self-hosting framework, fully automated from empty disk to operating services with a single command.
- danmanners/aws-argo-cluster-template - A community opinionated template for deploying Kubernetes clusters on-prem and in AWS using Pulumi, SOPS, Sealed Secrets, GitHub Actions, Renovate, Cilium and more!
- ricsanfre/pi-cluster - Pi Kubernetes Cluster. Homelab kubernetes cluster automated with Ansible and ArgoCD
- techno-tim/k3s-ansible - The easiest way to bootstrap a self-hosted High Availability Kubernetes cluster. A fully automated HA k3s etcd install with kube-vip, MetalLB, and more
⭐ Stargazers
🤝 Thanks
Big shout out to all the contributors, sponsors and everyone else who has helped on this project.