From 9517eea519b780e154dd791c555c698e84a0e5cd Mon Sep 17 00:00:00 2001 From: Brad Davidson Date: Wed, 21 Aug 2024 19:29:17 +0000 Subject: [PATCH] Fix traefik netpol port names Signed-off-by: Brad Davidson --- pkg/rke2/np.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/rke2/np.go b/pkg/rke2/np.go index 3eddd08e75..28a75d4bc7 100644 --- a/pkg/rke2/np.go +++ b/pkg/rke2/np.go @@ -141,14 +141,14 @@ var defaultKubeSystemPolicies = []policyTemplate{ Protocol: &tcp, Port: &intstr.IntOrString{ Type: intstr.String, - StrVal: "http", + StrVal: "web", }, }, { Protocol: &tcp, Port: &intstr.IntOrString{ Type: intstr.String, - StrVal: "https", + StrVal: "websecure", }, }, },