From e01cb84ec09966352265ad343e55f11858157684 Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Sun, 23 Jun 2024 19:29:10 -0400 Subject: [PATCH] fix(tailscale): fix default tags --- kubernetes/core/tailscale.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kubernetes/core/tailscale.nix b/kubernetes/core/tailscale.nix index 58be88f..f62a8f2 100644 --- a/kubernetes/core/tailscale.nix +++ b/kubernetes/core/tailscale.nix @@ -11,7 +11,8 @@ }; values = { - operatorConfig.defaultTags = [ "tag:hfym-ds" ]; + operatorConfig.defaultTags = [ "tag:hfym-ds-operator" ]; + proxyConfig.defaultTags = "tag:hfym-ds"; }; };