From 4a243867783d1502cadc227e07cdc955e2b05782 Mon Sep 17 00:00:00 2001 From: happyearthbytes <103777273+happyearthbytes@users.noreply.github.com> Date: Sun, 7 Jul 2024 19:03:09 -0400 Subject: [PATCH] Update proxy.nix kubernetes: Fix proxy default hostname to use fqdn --- nixos/modules/services/cluster/kubernetes/proxy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/cluster/kubernetes/proxy.nix b/nixos/modules/services/cluster/kubernetes/proxy.nix index c09e7695f2a42..b3e81b75f17a5 100644 --- a/nixos/modules/services/cluster/kubernetes/proxy.nix +++ b/nixos/modules/services/cluster/kubernetes/proxy.nix @@ -38,8 +38,8 @@ in hostname = mkOption { description = "Kubernetes proxy hostname override."; - default = config.networking.hostName; - defaultText = literalExpression "config.networking.hostName"; + default = config.networking.fqdn; + defaultText = literalExpression "config.networking.fqdn"; type = str; };