From 0ab9418458abcc5f8a51f529e3f57316826e5a62 Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Sun, 29 Mar 2026 23:04:49 +0000 Subject: [PATCH] fix: Re-add HTTPS port to Tailscale LB for Rancher Rancher now manages its own TLS (no longer tls:external), so it serves HTTPS on port 443. The Tailscale LoadBalancer needs to expose both HTTP (80) and HTTPS (443) targeting the corresponding container ports. --- infrastructure/addons/rancher/rancher-tailscale-service.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/addons/rancher/rancher-tailscale-service.yaml b/infrastructure/addons/rancher/rancher-tailscale-service.yaml index feb504b..7cda20e 100644 --- a/infrastructure/addons/rancher/rancher-tailscale-service.yaml +++ b/infrastructure/addons/rancher/rancher-tailscale-service.yaml @@ -16,3 +16,7 @@ spec: port: 80 protocol: TCP targetPort: 80 + - name: https + port: 443 + protocol: TCP + targetPort: 443