# Unified Topology Flake — Research Stack A zero-fingerprint NixOS flake that describes the entire k3s cluster topology as code. Every node contains the seed to reconstruct itself: no IPs, no secrets, no external dependencies embedded in the flake. ## Principle > A node goes online → it joins → it goes offline → the cluster adjusts. The flake spans the full topology spectrum: - **Server-class x86** (core, judge, mirror, foxtop) — full k8s workloads - **Thin client / Pi** (edge) — lightweight k3s agent, pulse heartbeat only - **microvm-nerdrack** — zero work, just pulse. Tainted `pulse-only:NoSchedule`. ## File Layout ``` 4-Infrastructure/k3s-flake/ ├── flake.nix — 6 topology configurations ├── k3s-configuration.nix — base module (Tailscale, SSH, Nix, firewall, sops) ├── k3s-server.nix — control plane + Caddy/Porkbun + deploy oneshot ├── .sops.yaml — age key rules ├── secrets/ — encrypted at rest, decrypted at activation │ ├── k3s-token.age — K3S_TOKEN= │ ├── authentik-secrets.age — secret-key, postgresql-password │ └── porkbun-env.age — PORKBUN_API_KEY, PORKBUN_SECRET_KEY ├── roles/ — one module per topology role │ ├── core.nix — label: topology.researchstack.io/role=core │ ├── judge.nix — label: role=judge │ ├── mirror.nix — label: role=mirror │ ├── edge.nix — label: role=edge, taint: pulse-only:NoSchedule │ └── foxtop.nix — label: role=foxtop ├── manifests/ — Kubernetes resources, auto-deployed by systemd │ ├── kustomization.yaml │ ├── namespace.yaml — namespace: services │ ├── authentik/ — HelmChart CRD (official chart + in-cluster PG/Redis) │ ├── uptime-kuma/ — Deployment + NodePort 30801 + PVC │ ├── heimdall/ — Deployment + NodePort 30802 + PVC │ ├── homer/ — Deployment + NodePort 30803 + ConfigMap │ └── pulse-receiver/ — Deployment + NodePort 30804 (inline Python receiver) └── scripts/ └── deploy-services.sh — idempotent kubectl apply, called by systemd oneshot ``` ## Topology Design ### Roles & Node Classes | Role | k3s Label | Taints | Workload | |---------|-------------------------------------------------|---------------------------|----------| | server | — (control plane) | — | Caddy ingress + deploy-manifests | | core | `topology.researchstack.io/role=core` | — | General compute (PG, Redis, etc.) | | judge | `topology.researchstack.io/role=judge` | — | Validation / audit | | mirror | `topology.researchstack.io/role=mirror` | — | Storage / replication | | edge | `topology.researchstack.io/role=edge` | `pulse-only:NoSchedule` | Pulse heartbeat only | | foxtop | `topology.researchstack.io/role=foxtop` | — | Top-level orchestrator | ### Service Placement | Service | NodePort | Prefers Role | Stateful? | |--------------------|----------|--------------|-----------| | Authentik | 30800 | core, server | Yes (PG + Redis PVCs) | | Uptime Kuma | 30801 | any | PVC (1Gi) — node-bound | | Heimdall | 30802 | any | PVC (1Gi) — node-bound | | Homer | 30803 | any | No (ConfigMap) | | Pulse Receiver | 30804 | any | No (stateless) | ### Domain Mapping (Caddy) All services are served under `*.YOUR_DOMAIN` (e.g. `researchstack.info`): - `auth.YOUR_DOMAIN` → NodePort 30800 → Authentik - `status.YOUR_DOMAIN` → NodePort 30801 → Uptime Kuma - `apps.YOUR_DOMAIN` → NodePort 30802 → Heimdall - `home.YOUR_DOMAIN` → NodePort 30803 → Homer - `pulse.YOUR_DOMAIN` → NodePort 30804 → Pulse Receiver - `YOUR_DOMAIN` → static response "k3s unified topology — Research Stack" TLS via Porkbun DNS challenge (caddy-dns/porkbun plugin). ## Node Lifecycle | Phase | What happens | |-----------|-------------| | **Goes online** | NixOS activates → sops decrypts secrets → Tailscale connects → k3s agent starts → joins cluster via `serverAddr` (Tailscale DNS) | | **Joins** | Token validated from `K3S_TOKEN` env var (sops-decrypted) → node registers with topology label | | **Goes offline** | kubelet stops heartbeating → k8s marks `NotReady` (40s grace) → pods evicted (5m) | | **Adjusts** | Remaining nodes reschedule evicted pods; returning node re-registers and re-accepts workloads | | **Reconstructs** | Any node rebuilt from the flake alone — secrets decrypt via sops, no other machine required | ## Bootstrap Workflow ### 1. Prerequisites - A machine running NixOS (or Nix installed) to build the flake - Age key pair for sops (`age-keygen -o ~/.config/sops/age/keys.txt`) - Porkbun API key + secret for TLS - Tailscale auth key (optional — first `tailscale up` can be manual) ### 2. Generate & Encrypt Secrets ```bash # Generate k3s token TOKEN=$(openssl rand -hex 32) echo "K3S_TOKEN=$TOKEN" | age -e -r "$(cat ~/.config/sops/age/keys.txt | age-key -y)" \ -o 4-Infrastructure/k3s-flake/secrets/k3s-token.age # Generate authentik secrets cat > /tmp/authentik.env << EOF secret-key=$(openssl rand -hex 32) postgresql-password=$(openssl rand -hex 16) EOF age -e -r "$(cat ~/.config/sops/age/keys.txt | age-key -y)" \ -o 4-Infrastructure/k3s-flake/secrets/authentik-secrets.age < /tmp/authentik.env rm /tmp/authentik.env # Encrypt porkbun credentials echo "PORKBUN_API_KEY=your_key PORKBUN_SECRET_KEY=your_secret" | \ age -e -r "$(cat ~/.config/sops/age/keys.txt | age-key -y)" \ -o 4-Infrastructure/k3s-flake/secrets/porkbun-env.age ``` ### 3. Configure `.sops.yaml` ```yaml keys: - &admin age1yourpublickey... creation_rules: - path_regex: secrets/.*\.age$ key_groups: - age: - *admin ``` ### 4. Fill in `flake.nix` Edit the 6 `nixosConfigurations` entries: ```nix k3s-server = mkNode { hostName = "k3s-server"; domain = "researchstack.info"; extraModules = [ ./k3s-server.nix ]; }; k3s-core = mkNode { hostName = "k3s-core-1"; serverAddr = "https://k3s-server.tail-XXXXX.ts.net:6443"; extraModules = [ ./roles/core.nix ]; }; # ... repeat for judge, mirror, edge, foxtop ``` ### 5. Add SSH Keys In `k3s-configuration.nix`: ```nix users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3... your-key-comment" ]; ``` ### 6. Deploy ```bash # Server first nixos-rebuild switch --flake .#k3s-server --target-host root@ # Then agents — they auto-join via Tailscale nixos-rebuild switch --flake .#k3s-core --target-host root@ nixos-rebuild switch --flake .#k3s-edge --target-host root@ # ... etc # Verify kubectl get nodes --show-labels kubectl get pods -n services ``` ## Service Details ### Authentik - Deployed via k3s HelmChart CRD (official authentik Helm chart) - In-cluster PostgreSQL (8Gi PVC) and Redis (2Gi PVC) - NodePort 30800, routes to `auth.YOUR_DOMAIN` - DB password and secret key from sops-decrypted K8s Secret - Affinity: prefers `core` and `server` nodes ### Pulse Receiver Minimal Python HTTP server deployed as a single pod: ``` POST / → records pulse timestamp GET / → returns JSON map of all pulse timestamps ``` The microvm-nerdrack (edge role, `pulse-only:NoSchedule` taint) cannot run workloads but is monitored via its kubelet heartbeat. External edge devices (such as an ESP32) can `POST /esp32-pulse-1` to `pulse.YOUR_DOMAIN:30804`. ### Homer Dashboard Pre-configured with links to: - Authentik (`https://auth.YOUR_DOMAIN`) - Uptime Kuma (`https://status.YOUR_DOMAIN`) - Heimdall (`https://apps.YOUR_DOMAIN`) - Pulse Receiver (`https://pulse.YOUR_DOMAIN`) Edit `manifests/homer/configmap.yaml` to update links. ## Storage Considerations - Default k3s `local-path` provisioner — PVCs are node-bound - **Stateless workloads** (Homer, Pulse Receiver) reschedule freely - **Stateful workloads** (Authentik PG/Redis, Uptime Kuma, Heimdall) stay on their assigned node until the PVC is manually moved - For true "adjusts" with stateful workloads, add Longhorn or another distributed storage provisioner ## Scaling | Direction | Action | |-----------|--------| | Add a node | Write a new `nixosConfigurations` entry in `flake.nix`, deploy | | Remove a node | `kubectl drain `, delete config, stop the machine | | Promote a role | Change `extraModules` in `flake.nix`, redeploy | | Demote a role | Same — the flake is the source of truth | ## Zero-Fingerprint Guarantee The flake contains **no**: - IP addresses (all `127.0.0.1` or parameterized) - Domain names (parameterized via `specialArgs.domain`) - Machine identifiers (hostnames are `specialArgs`) - API keys or tokens (all in sops-encrypted `.age` files) - SSH keys (user fills in `k3s-configuration.nix`) - Tailscale auth keys (manual `tailscale up` or external file) Every deployment-specific value comes from: - `specialArgs` at build time - Sops-decrypted `.age` files at activation time - The user's configuration edits in `flake.nix`