From 8fa31858b451c57d5dd6c0d5670f6c60b40e2352 Mon Sep 17 00:00:00 2001 From: lucalise Date: Thu, 1 Jan 2026 22:21:37 -0800 Subject: [PATCH] fix(homelab): fix homeassistant route to 8080 --- nix/homelab/config.toml | 2 +- nix/homelab/kustomize/routes.yaml | 2 +- nix/homelab/nodes/kube/configuration.nix | 6 ------ 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/nix/homelab/config.toml b/nix/homelab/config.toml index a7b7189..eddf125 100644 --- a/nix/homelab/config.toml +++ b/nix/homelab/config.toml @@ -19,7 +19,7 @@ routes = [ { name = "home-assistant", namespace = "home", - port = 8123, + port = 8080, private = true }, { diff --git a/nix/homelab/kustomize/routes.yaml b/nix/homelab/kustomize/routes.yaml index f632e55..203dedd 100644 --- a/nix/homelab/kustomize/routes.yaml +++ b/nix/homelab/kustomize/routes.yaml @@ -42,7 +42,7 @@ spec: rules: - backendRefs: - name: home-assistant - port: 8123 + port: 8080 filters: - type: ExtensionRef extensionRef: diff --git a/nix/homelab/nodes/kube/configuration.nix b/nix/homelab/nodes/kube/configuration.nix index cb2d683..8da751e 100644 --- a/nix/homelab/nodes/kube/configuration.nix +++ b/nix/homelab/nodes/kube/configuration.nix @@ -20,12 +20,6 @@ networking.hostName = meta.hostname; networking.networkmanager.enable = true; - networking.firewall.extraCommands = '' - iptables -I INPUT -d 192.168.27.10/32 -s 10.0.0.0/8 -j ACCEPT - iptables -I INPUT -d 192.168.27.10/32 -s 172.16.0.0/12 -j ACCEPT - iptables -I INPUT -d 192.168.27.10/32 -s 192.168.0.0/16 -j ACCEPT - iptables -I INPUT -d 192.168.27.10/32 -j DROP - ''; time.timeZone = "America/Vancouver";