From e5621db078eb75a5a12a1e126998172cce639b44 Mon Sep 17 00:00:00 2001 From: justinsb Date: Sat, 24 Aug 2024 16:00:07 -0400 Subject: [PATCH] experiment: get test results for cilium without kube-proxy replacement --- upup/pkg/fi/cloudup/new_cluster.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upup/pkg/fi/cloudup/new_cluster.go b/upup/pkg/fi/cloudup/new_cluster.go index 9354948d0dada..6d773d608ca08 100644 --- a/upup/pkg/fi/cloudup/new_cluster.go +++ b/upup/pkg/fi/cloudup/new_cluster.go @@ -1613,12 +1613,12 @@ func createEtcdCluster(etcdCluster string, controlPlanes []*api.InstanceGroup, e func addCiliumNetwork(cluster *api.Cluster) { cilium := &api.CiliumNetworkingSpec{} cluster.Spec.Networking.Cilium = cilium - cilium.EnableNodePort = true + // cilium.EnableNodePort = true if cluster.Spec.KubeProxy == nil { cluster.Spec.KubeProxy = &api.KubeProxyConfig{} } - enabled := false - cluster.Spec.KubeProxy.Enabled = &enabled + // enabled := false + // cluster.Spec.KubeProxy.Enabled = &enabled } // defaultImage returns the default Image, based on the cloudprovider