From 3db3a0c1bf95f3c138fd246c5da1d97e83513a1a Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Sat, 11 May 2024 23:52:52 +0200 Subject: [PATCH] Fix helmchartconfig value for annotations --- kubenix-modules/traefik.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kubenix-modules/traefik.nix b/kubenix-modules/traefik.nix index d6ee15e..9884495 100644 --- a/kubenix-modules/traefik.nix +++ b/kubenix-modules/traefik.nix @@ -7,7 +7,7 @@ # Create endpoint for HTTPS on port 444. # Allow external name services for esrom. spec.valuesContent = lib.generators.toYAML { } { - service.spec.annotations."metallb.universe.tf/loadBalancerIPs" = myLib.globals.traefikIPv4; + service.annotations."metallb.universe.tf/loadBalancerIPs" = myLib.globals.traefikIPv4; providers.kubernetesIngress.allowExternalNameServices = true; ports.localsecure = { @@ -26,5 +26,4 @@ }; }; }; - }