From f09a942395d4b0cfab40bc31fa0ab21a8e501ad5 Mon Sep 17 00:00:00 2001 From: damocles Date: Sun, 13 Sep 2026 18:30:40 +0200 Subject: [PATCH] nix: point three modules' tlsCfg alias at the current hive-controller path --- nix/host-modules/swarm-authelia.nix | 2 +- nix/host-modules/swarm-grafana.nix | 2 +- nix/host-modules/swarm-otel.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/host-modules/swarm-authelia.nix b/nix/host-modules/swarm-authelia.nix index 38aac164..027d9667 100644 --- a/nix/host-modules/swarm-authelia.nix +++ b/nix/host-modules/swarm-authelia.nix @@ -99,7 +99,7 @@ let unitName = "authelia-${instance}"; stateDir = "/var/lib/${unitName}"; - tlsCfg = hyperhiveCfg.tls; + tlsCfg = deployCfg.hive-controller.tls; caTrust = import ./lib/hive-ca-trust.nix { inherit lib tlsCfg gatewayCfg; }; # `swarm-authelia-bridge` verifies the gateway when it introspects by name. # Nothing in this container trusted the swarm CA, which is a runtime file no diff --git a/nix/host-modules/swarm-grafana.nix b/nix/host-modules/swarm-grafana.nix index 81ec4374..df6f45f6 100644 --- a/nix/host-modules/swarm-grafana.nix +++ b/nix/host-modules/swarm-grafana.nix @@ -20,7 +20,7 @@ let networkCfg = config.services.hyperhive.network; hyperhiveCfg = config.services.hyperhive; gatewayCfg = hyperhiveCfg.gateway; - tlsCfg = hyperhiveCfg.tls; + tlsCfg = deployCfg.hive-controller.tls; autheliaCfg = hyperhiveCfg.swarm.authelia; vmCfg = hyperhiveCfg.swarm.victoriametrics; vlCfg = hyperhiveCfg.swarm.victorialogs; diff --git a/nix/host-modules/swarm-otel.nix b/nix/host-modules/swarm-otel.nix index 5856b39f..01ed5c58 100644 --- a/nix/host-modules/swarm-otel.nix +++ b/nix/host-modules/swarm-otel.nix @@ -163,7 +163,7 @@ let # `security.pki.certificateFiles`. caTrust = import ./lib/hive-ca-trust.nix { inherit lib; - tlsCfg = hyperhiveCfg.tls; + tlsCfg = deployCfg.hive-controller.tls; inherit gatewayCfg; };