Compare commits

..

30 Commits

Author SHA1 Message Date
JamesAllenby 0c1c1a24ee fix: use import instead of include 2026-08-14 23:15:32 +01:00
JamesAllenby 9a5c8288b0 feat: add init target to justfile 2026-08-14 23:10:25 +01:00
JamesAllenby f946f0f2bf fix: ensure kolibri user is system user 2026-08-14 22:21:16 +01:00
JamesAllenby 80d48e6f46 feat: add power and performance playbook 2026-08-14 22:21:03 +01:00
JamesAllenby 8dc6ac2939 feat: add ansible galaxy path 2026-08-14 22:19:18 +01:00
JamesAllenby 7f80884082 feat: add target for fetching ansible dependencies 2026-08-14 22:18:48 +01:00
JamesAllenby 9abb0b010e feat: add variable master and worker counts 2026-08-14 22:08:45 +01:00
JamesAllenby aa0e9f37bf fix: add cluster name to incus cluster 2026-08-09 20:50:02 +01:00
JamesAllenby 5613699540 fix: add roles path to ansible config 2026-08-09 20:49:40 +01:00
JamesAllenby 03dc10c0e5 chore: set minimum tofu version to 1.11.5 2026-07-28 16:47:14 +01:00
JamesAllenby 573afc50a4 doc: readme update 2026-07-28 16:37:33 +01:00
JamesAllenby 6dab1dccd9 chore: rename bare metal to hive 2026-07-28 16:37:20 +01:00
JamesAllenby ce16338203 doc: add quick start guide 2026-07-05 23:02:30 +01:00
JamesAllenby 591541215b fix: down recipe destroys entire tofu instance 2026-07-05 23:00:12 +01:00
JamesAllenby adccf7af22 style: format opentofu code 2026-07-05 22:54:07 +01:00
JamesAllenby 87e90a2327 ci: add yamlfmt config 2026-07-05 22:53:35 +01:00
JamesAllenby 9e0f9697a8 refactor: remove unused load balancer ranges 2026-07-05 22:38:01 +01:00
JamesAllenby 819add7725 refactor: remove longhorn 2026-07-05 22:32:12 +01:00
JamesAllenby 8c665eeff4 refactor: remove metrics-server 2026-07-05 22:31:56 +01:00
JamesAllenby b3279dd23c refactor: remove cilium 2026-07-05 22:31:32 +01:00
JamesAllenby 0a4c621c57 refactor: remove cert-manager 2026-07-05 22:24:18 +01:00
JamesAllenby 3ecf328d2a refactor: remove authentik 2026-07-05 22:23:50 +01:00
JamesAllenby 390e2b29f5 refactor: remove keepalived 2026-07-05 22:23:36 +01:00
JamesAllenby 259abad851 refactor: remove prometheus 2026-07-05 22:21:00 +01:00
JamesAllenby b7a7ed5632 refactor: remove traefik 2026-07-05 22:20:41 +01:00
JamesAllenby 6f62bf2a1b refactor: disable kube-vip svc load balancer 2026-07-05 22:19:34 +01:00
JamesAllenby 1efa0f9426 feat: add prometheus role 2026-07-05 22:19:07 +01:00
JamesAllenby 81bf536ac3 feat: add cert-manager role 2026-07-05 22:18:55 +01:00
JamesAllenby 02af027e43 feat: add authentik role 2026-07-05 22:18:43 +01:00
JamesAllenby dd8e1e3fc9 refactor: remove longhorn and traefik 2026-07-05 22:18:12 +01:00
28 changed files with 138 additions and 202 deletions
+2
View File
@@ -3,8 +3,10 @@
terraform.tfstate
terraform.tfstate.backup
ansible/lookup_plugins
ansible/galaxy_roles
!.gitignore
!.editorconfig
!.vscode
!.pre-commit-config.yaml
!.yamlfmt.yaml
+5
View File
@@ -0,0 +1,5 @@
formatter:
indent: 2
retain_line_breaks_single: true
scan_folded_as_literal: true
indentless_arrays: false
+8 -4
View File
@@ -4,16 +4,17 @@ opentofu_dir := "infra/"
ansible_proton_pass_plugin_ref := "4bd0741c347646060ec59c73f8adf7ed8e706cf3"
ansible_proton_pass_plugin_url := "https://raw.githubusercontent.com/protonpass/proton-pass-ansible-integration/" + ansible_proton_pass_plugin_ref + "/lookup_plugins/proton_pass.py"
init: tofu-init fetch-ansible-deps fetch-ansible-plugins
up: tofu-apply ansible-run-playbook
down: tofu-destroy-instances
down: tofu-destroy
tofu-init:
tofu -chdir={{ opentofu_dir }} init -upgrade
tofu-apply: tofu-init
tofu-apply:
tofu -chdir={{ opentofu_dir }} apply -auto-approve
tofu-destroy: tofu-init
tofu-destroy:
tofu -chdir={{ opentofu_dir }} apply -auto-approve -destroy
tofu-destroy-instances:
@@ -30,6 +31,9 @@ headlamp:
clean: tofu-destroy
git clean -fdx
fetch-plugins:
fetch-ansible-deps:
ansible-galaxy install --role-file ansible/requirements.yml --roles-path ansible/galaxy_roles
fetch-ansible-plugins:
mkdir -p ansible/lookup_plugins
curl -fsSL -o ansible/lookup_plugins/proton_pass.py {{ ansible_proton_pass_plugin_url }}
+50
View File
@@ -1,5 +1,39 @@
# Home Infrastructure
An Ansible + OpenTofu project for installing a minimal Kubernetes installation
to bare-metal and virtual machines.
## Quick Start
Get started with a local Kubernetes cluster which can be used to design and test
new configuration before pushing them to real machines.
1. Login with Proton Pass and start the SSH daemon.
```shell
pass-cli login
pass-cli ssh-agent daemon start
export SSH_AUTH_SOCK="$HOME/.ssh/proton-pass-agent.sock"
```
2. Install the Proton Pass plugin for Ansible
```shell
just fetch-plugins
```
3. Launch Incus virtual machines
```shell
just up
```
4. Tear down the Incus virtual machines
```shell
just down
```
## Setup
```shell
@@ -15,3 +49,19 @@ The Kolibri automation user is used for all other playbooks and has permissions
```shell
ansible-playbook -i ansible/inventories/bare_metal/hosts.yaml ansible/playbooks/provision.yaml -K -e ansible_user=<your_interactive_user>
```
## Local Testing with Incus
```shell
just up
```
```shell
just headlamp
```
> The above command runs the Flatpak version of Headlamp which may not have permissions
> to access the Kubernetes config file copied from the instance.
>
> You should run `flatpak override --user --filesystem=$(pwd) io.kinvolk.Headlamp`
> to ensure that Headlamp can access the directory contents.
+1
View File
@@ -1,3 +1,4 @@
[defaults]
roles_path = ansible/roles:ansible/galaxy_roles
lookup_plugins = ansible/lookup_plugins
callback_result_format = yaml
@@ -1,8 +0,0 @@
masters:
hosts:
vineta:
ansible_host: 10.0.0.201
rotfront:
ansible_host: 10.0.0.202
leng:
ansible_host: 10.0.0.203
@@ -3,7 +3,6 @@ ansible_become_exe: sudo.ws
ansible_user: kolibri
vip_interface: eno1
vip_address: 10.0.0.200
cluster_name: hive
cluster_pod_subnet: 172.16.0.0/16
cluster_service_subnet: 10.96.0.0/16
lb_pool_start: 10.0.0.210
lb_pool_stop: 10.0.0.220
+8
View File
@@ -0,0 +1,8 @@
masters:
hosts:
vineta:
ansible_host: vineta.local
rotfront:
ansible_host: rotfront.local
leng:
ansible_host: leng.local
@@ -2,7 +2,6 @@ ansible_python_interpreter: /usr/bin/python3
ansible_user: kolibri
vip_interface: enp5s0
vip_address: 10.150.0.100
cluster_name: hive
cluster_pod_subnet: 172.16.0.0/16
cluster_service_subnet: 10.96.0.0/16
lb_pool_start: 10.150.0.210
lb_pool_stop: 10.150.0.220
+7
View File
@@ -0,0 +1,7 @@
---
- name: Configure performance tuning
hosts: all
become: true
roles:
- giovtorres.tuned
- irqbalance
+1
View File
@@ -10,6 +10,7 @@
groups:
- sudo
shell: /bin/bash
system: true
- name: Ensure authorised keys for Kolibri
ansible.posix.authorized_key:
+6
View File
@@ -0,0 +1,6 @@
---
collections:
- ansible.posix
roles:
- name: giovtorres.tuned
version: 2.0.2
+11
View File
@@ -0,0 +1,11 @@
---
- name: Install irqbalance
ansible.builtin.package:
name: irqbalance
state: present
- name: Ensure irqbalance service
ansible.builtin.service:
name: irqbalance
state: started
enabled: true
@@ -1,4 +0,0 @@
- name: Restart keepalived
ansible.builtin.service:
name: keepalived
state: restarted
-12
View File
@@ -1,12 +0,0 @@
- name: Install keepalived
ansible.builtin.apt:
pkg:
- keepalived
state: present
- name: Install keepalived config
ansible.builtin.template:
src: keepalived.conf.j2
dest: /etc/keepalived/keepalived.conf
mode: "0644"
notify: Restart keepalived
@@ -1,19 +0,0 @@
vrrp_instance VI_1 {
state MASTER
interface enp5s0
virtual_router_id 51
priority 100
advert_int 1
authentication {
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
10.150.0.100
10.150.0.101
10.150.0.102
}
# Allow packets addressed to the VIPs above to be received
accept
}
@@ -1,14 +0,0 @@
cilium_chart_version: 1.19.5
cilium_values:
ipam:
operator:
clusterPoolIPv4PodCIDRList:
- "{{ cluster_pod_subnet }}"
hubble:
relay:
enabled: true
ui:
enabled: true
l2announcements:
enabled: true
@@ -1,27 +0,0 @@
- name: Ensure Cilium repository exists
kubernetes.core.helm_repository:
name: cilium
url: https://helm.cilium.io/
- name: Ensure Cilium is installed
kubernetes.core.helm:
release_name: cilium
release_namespace: kube-system
chart_ref: cilium/cilium
chart_version: "{{ cilium_chart_version }}"
values: "{{ cilium_values }}"
run_once: true
- name: Ensure LoadBalancer IP pool exists
kubernetes.core.k8s:
state: present
definition:
apiVersion: cilium.io/v2
kind: CiliumLoadBalancerIPPool
metadata:
name: homelab-pool
spec:
blocks:
- start: "{{ lb_pool_start }}"
stop: "{{ lb_pool_stop }}"
run_once: true
@@ -2,13 +2,13 @@
ansible.builtin.import_tasks: kube-vip.yaml
- name: Initialise Kubernetes cluster
ansible.builtin.include_tasks: init-cluster.yaml
ansible.builtin.import_tasks: init-cluster.yaml
- name: Join nodes as control planes
ansible.builtin.include_tasks: join-cluster.yaml
ansible.builtin.import_tasks: join-cluster.yaml
- name: Copy Kubernetes admin configuration on all nodes
ansible.builtin.include_tasks: copy-config.yaml
ansible.builtin.import_tasks: copy-config.yaml
- name: Remove control plane scheduling restrictions
ansible.builtin.include_tasks: untaint.yaml
ansible.builtin.import_tasks: untaint.yaml
@@ -29,9 +29,7 @@ spec:
- name: cp_namespace
value: kube-system
- name: svc_enable
value: "true"
- name: svc_leasename
value: plndr-svcs-lock
value: "false"
- name: vip_leaderelection
value: "true"
- name: vip_leasename
@@ -4,7 +4,7 @@ kind: InitConfiguration
---
apiVersion: kubeadm.k8s.io/v1beta4
kind: ClusterConfiguration
clusterName: aeon
clusterName: "{{ cluster_name }}"
controlPlaneEndpoint: "{{ vip_address }}"
networking:
podSubnet: "{{ cluster_pod_subnet }}"
@@ -1,18 +0,0 @@
- name: Ensure open-iscsi is installed
ansible.builtin.apt:
pkg: open-iscsi
state: present
- name: Ensure Longhorn repository exists
kubernetes.core.helm_repository:
name: longhorn
url: https://charts.longhorn.io
- name: Ensure Longhorn is installed
kubernetes.core.helm:
release_name: longhorn
release_namespace: longhorn-system
chart_ref: longhorn/longhorn
chart_version: 1.12.0
create_namespace: true
run_once: true
@@ -1,15 +0,0 @@
- name: Ensure Metrics Server repository exists
kubernetes.core.helm_repository:
name: metrics-server
url: https://kubernetes-sigs.github.io/metrics-server/
- name: Ensure Metrics Server is installed
kubernetes.core.helm:
release_name: metrics-server
release_namespace: kube-system
chart_ref: metrics-server/metrics-server
chart_version: 3.13.1
values:
args:
- --kubelet-insecure-tls
run_once: true
@@ -1,12 +0,0 @@
traefik_chart_version: 41.0.1
traefik_values:
providers:
kubernetesGateway:
enabled: true
gateway:
enabled: true
listeners:
web:
port: 8000
protocol: HTTP
@@ -1,20 +0,0 @@
- name: Install Gateway API CRDs
kubernetes.core.k8s:
src: https://github.com/kubernetes-sigs/gateway-api/releases/latest/download/standard-install.yaml
state: present
run_once: true
- name: Ensure Traefik repository exists
kubernetes.core.helm_repository:
name: traefik
url: https://traefik.github.io/charts
- name: Ensure Traefik is installed
kubernetes.core.helm:
release_name: traefik
release_namespace: traefik
chart_ref: traefik/traefik
chart_version: "{{ traefik_chart_version }}"
create_namespace: true
values: "{{ traefik_values }}"
run_once: true
+3 -19
View File
@@ -1,3 +1,6 @@
- name: Apply power and performance settings
ansible.builtin.import_playbook: playbooks/performance.yaml
- name: Baseline configuration
hosts: all
become: true
@@ -5,27 +8,8 @@
- common
- kubernetes_common
# ========================
# Setup Kubernetes Cluster
# ========================
- name: Initialise Kubernetes Cluster
hosts: masters
become: true
roles:
- kubernetes_control_plane
- kubernetes_cilium
- kubernetes_metrics_server
- kubernetes_longhorn
- kubernetes_traefik
# # =======================
# # JOIN MASTERS TO CLUSTER
# # =======================
# - name: Adkfk
# hosts: masters[0]
# tasks:
# - name: Generate Kubernetes 'join' command
# ansible.builtin.command: echo hi
# changed_when: true
+14 -18
View File
@@ -3,14 +3,10 @@
# ------
locals {
image = "ubuntu/26.04"
root_disk_size = "16GiB"
ext_disk_size = "16GiB"
network_cidr = "10.150.0.1/24"
master_count = 3
worker_count = 0
image = "ubuntu/26.04"
}
# ---------
@@ -46,13 +42,13 @@ resource "incus_network" "this" {
module "master" {
source = "./modules/incus_vm"
count = local.master_count
count = var.master_count
name = "master-${count.index}"
project = incus_project.this.name
image = incus_image.this.fingerprint
cpu = 2
memory = "2GiB"
name = "master-${count.index}"
project = incus_project.this.name
image = incus_image.this.fingerprint
cpu = 2
memory = "2GiB"
network = incus_network.this.name
ipv4_address = cidrhost(local.network_cidr, 2 + (2 * count.index))
@@ -60,13 +56,13 @@ module "master" {
module "worker" {
source = "./modules/incus_vm"
count = local.worker_count
count = var.worker_count
name = "worker-${count.index}"
project = incus_project.this.name
image = incus_image.this.fingerprint
cpu = 2
memory = "2GiB"
name = "worker-${count.index}"
project = incus_project.this.name
image = incus_image.this.fingerprint
cpu = 2
memory = "2GiB"
network = incus_network.this.name
ipv4_address = cidrhost(local.network_cidr, 3 + (2 * count.index))
@@ -77,7 +73,7 @@ module "worker" {
# ---------
terraform {
required_version = "~> 1.12"
required_version = ">= 1.11.5"
required_providers {
incus = {
+14
View File
@@ -1,3 +1,17 @@
variable "master_count" {
description = "The number of master nodes to provision."
type = number
default = 1
nullable = false
}
variable "worker_count" {
description = "The number of worker nodes to provision."
type = number
default = 0
nullable = false
}
variable "cpus" {
description = "The number of CPU cores allocated to each virtual machine."
type = number