A Kubernetes based setup to run a home server.
To start with, you can use a Rasperry Pi or if you want to rock your own setup from old hardware, use an old laptop that you have lying around. Do note, this repo is ARM 64 first, so some images might not work. Here are some Amazon links to buy the hardware you need to get started.
Here are some links to the hardware I'm using. Do note these are affiliate links.
- Raspberry Pi 4 for compute - this can scale horizontally for compute
- Data Storage HDD - I'm using external drives but feel free to use internal drives and connect with SATA adapters
- Data Storage SSD - this is the second type of drive, it's expensive but it's SSD so there aren't any moving parts and more compact.
- RJ45 cable - would suggest using wired connection between devices, but WiFi can be a starting point
The architecture is evolving as this is an active project I'm working on, but her's the basic idea.
The approach is layered and layers depend on one or more installed components from the layer below.
I had also created a video where I show how I set the homelab up for my use.
- Linux nodes (a VM, Raspberry PI, Tower PC)
- Docker installed on the node
- systemd configured on the nodes (this is because k3s runs as a systemd service)
- ssh configured with a keypair - password based authentication is not supported
- Any reusable part of this project will be an atom.
- Various parts of the setup are put into different terraform modules to be used as a workspace, each. This is also called a molecule.
- terraform installed on the agent which will execute terraform (can be the node itself as well) - currently
required_version = ">=1.3.0"
- terraform-backend-git if you want to use a git repository to store terraform state.
- Fill
.envrc
with all the required values. Place one .envrc in each molecule, this will help segregate their values and also because each molecule should have its own state file, soexport TF_BACKEND_GIT_GIT_STATE=
will change. I usestate-<MOLECULE_NAME>.json
as the pattern - Import all environment variables by running
. .envrc
in the directory of the molecule - Run the terraform init as follows -
terraform init -backend-config="address=${BACKEND}" -backend-config="lock_address=${BACKEND}" -backend-config="unlock_address=${BACKEND}"
the BACKEND env var is setup based on the other env vars in .envrc
- Remove the
backend "http" {}
from all molecules and init the moleculesterraform init
- Now run
terraform apply -var-file=inputs.tfvars
(modify the inputs.tfvars as per your liking)
Read any specific requirements per molecule in their readme.
I'm using Raspberry Pi 4 and Raspberry Pi 5 as the nodes on my Kubernetes cluster and all testing is done on this setup.
- Raspberry Pi 4 + Raspberry Pi 5
- Ubuntu Server 22.04
- docker 20.10.12