mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-21 10:27:30 +00:00
cmd/k8s-operator: explicitly set tcp on VIPService port configuration for Ingress with ProxyGroup (#16199)
Updates tailscale/corp#24795 Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk>
This commit is contained in:
@@ -318,9 +318,9 @@ func (r *HAIngressReconciler) maybeProvision(ctx context.Context, hostname strin
|
||||
tags = strings.Split(tstr, ",")
|
||||
}
|
||||
|
||||
tsSvcPorts := []string{"443"} // always 443 for Ingress
|
||||
tsSvcPorts := []string{"tcp:443"} // always 443 for Ingress
|
||||
if isHTTPEndpointEnabled(ing) {
|
||||
tsSvcPorts = append(tsSvcPorts, "80")
|
||||
tsSvcPorts = append(tsSvcPorts, "tcp:80")
|
||||
}
|
||||
|
||||
tsSvc := &tailscale.VIPService{
|
||||
|
Reference in New Issue
Block a user