Homelab

What is a homelab?

This question was answered very well by the reddit users webtroter and TreAwayDeuce 6 years ago.

Origin and Hardware

My interest in “Homelabbing” arose long before I was familiar with the term Homelab. I have always been curious, and drawn towards things that are unfamiliar to me. I am also a builder and problem solver by heart, which has given me a broad understanding of tech and maker-culture.

My lab started almost 4 years ago, when I wanted to set up my own DNS server at home, to add network wide ad-block (Pihole). As I learned more about Linux and containerization I quickly got drawn into the hobby of self-hosting web-services.

Raspberry Pi's are great, but but the computing resources are limited compared to a x86, so it wasn't long before I retired the pi for a used Lenovo Tiny M73 workstation with 8gb ram and a 4th gen i5. This was a big step up in power, which enabled me to host a lot more services and experiment more with docker and larger docker-compose stacks

As I wanted more storage, and the expansion ports on a mini pc are limited, I upgraded to a slightly larger Mini PC (Asrock Deskmini x300). The specs mentioned 3 m2 slots and 2 sata slots which would be perfect to build a low power NAS as the max power draw less than 50w.

I quickly learned that the low power motherboard obviously wasn't able to power two 10TB Ironwolf HDD's, so I had to hack up a solution with an external power supply. This was a bit of a mess (See picture below) and the flaky setup also led to occasional smart errors from the HDD array so I knew I had to move to new hardware soon.

hacked together homelab with an additional external power supply

The two HDD's are powered by an external power supply that I had to manually switch on and off when I rebooted the server. The patched cables also led to lots of S.M.A.R.T. errors which is obvious not great.

In the beginning of March, I upgraded my motherboard and ram in my main pc, and used the old mb and ram as a base to build my server. I plan to mount everything in a rack when we get more space, so I built the new server in a 2U rack case, which also leaves lots of room for storage upgrades. I used consumer grade hardware to keep idle power low:

  • MSI Pro-690-P (Lots of IOMMU groups)
  • Intel i3-12100f (Low power idle)
  • 32GB Corsair Vengeance DDR4 3200
  • 1tb Samsung Evo 970 (Host boot and VM disks)
  • 512gb Samsung Evo 970 (NAS cache)
  • 2 x 10TB Seagate Ironwolf (RAID1)
  • Geforce 1650ti 4gb (for transcoding)

The homelab is also connected to two 3D printers, that are running open source custom firmware (klipper) and controlled through a web interface (Mainsail) from any device in the local network. I started with a Ender3, and during my parental leave last year I built Voron 0.2. The parts are all sourced, and the rest of the parts are 3D printed in ABS+. It took me roughly 40 hours to build it and calibrate it.

OS

The server is running ProxmoxVE which is great for experimenting, as I can provision development and test environments easily from templates and spin up machines to experiment with Kubernetes without affecting my services. It's also interesting to learn the basics of Proxmox even though virtualization is not necessarily something I will do a deep dive on. It also makes it easy to separate services in LXC containers and virtual machines.

VMs and LXC

Docker Host

This VM is my production environment where I run my docker services that have been tested an properly implemented with network volumes and backup.


Currently I am hosting the following services:

  • Traefik
  • Reverse Proxy to direct and secure external traffic to external services. Traefik also handles ssl certificates from letsencrypt, as all of my external an internal domains have ssl encryption.

  • Traefik-bouncer
  • Monitors traefik, and bans incoming connection from known threat actors and a set of predefined rules. Also bans for multiple failed login attempts, and monitors logs of all exposed services.

  • Portfolio web page
  • This is my portfolio page, which will soon be available at rannes.dev. I'm using svelte/sveltekit and the docker image is built with nginx to serve the page. It is currently not exposed to the internet as I am still building it.

  • Crowdsec Security Engine
  • Prometheus
  • Grafana
  • Authelia
  • IAM layer with 2FA.

  • Media Stack
  • Jellyfin, Radarr, Sonarr, Prowlarr, Blazarr, Gluetun, Jellyseerr.

  • Syncthing
  • Gitea
  • self-hosted git repository

  • Gitea Runners
  • Runners for Continuous deployment.

  • Kuma Uptime
  • Portainer

Pi-Hole

LXC container running Pi-hole dns blocker. This is separate so the network is not affected when servicing other VMs. First this was included in the docker-stack but it created too many issues as I had to boot services in a specific order.

For this reason, I am also planning on moving Crowdsec and Traefik to a separate containers.

Unraid

This VM is running Unraid, which is managing my BTRFS array in Raid1. Upon boot it is loaded from a USB-stick, and runs from memory. I moved to unraid as it allows me to add more drives as needed, where as ZFS is very specific about the size of drives added, and I simply don't have the knowledge (or the will) of storage systems to manage it if I can avoid it.

This VM has the SATA controller passed through, for full control of the HDD's.