@@ -53,9 +53,6 @@ const (
5353 // https://github.com/kubernetes/dns/blob/80fdd88276adba36a87c4f424b66fdf37cd7c9a8/pkg/dns/dns.go#L53
5454 DNSHelperTimeout = 7 * time .Minute
5555
56- // CIIntegrationAKS contains the constants to be used when running tests on AKS.
57- CIIntegrationAKS = "aks"
58-
5956 // CIIntegrationKind contains the constant to be used when running tests on kind.
6057 CIIntegrationKind = "kind"
6158
@@ -140,25 +137,6 @@ var (
140137 "connectivityProbeFrequencyRatio" : "0" ,
141138 }
142139
143- aksHelmOverrides = map [string ]string {
144- "ipam.mode" : "delegated-plugin" ,
145- "routingMode" : "native" ,
146- "endpointRoutes.enabled" : "true" ,
147- "extraArgs" : "{--local-router-ipv4=169.254.23.0}" ,
148- "k8s.requireIPv4PodCIDR" : "false" ,
149- "ipv6.enabled" : "false" ,
150- "ipv4NativeRoutingCIDR" : NativeRoutingCIDR (),
151- "enableIPv4Masquerade" : "false" ,
152- "install-no-conntrack-iptables-rules" : "false" ,
153- "l7Proxy" : "false" ,
154- "hubble.enabled" : "false" ,
155- "kubeProxyReplacement" : "true" ,
156- "endpointHealthChecking.enabled" : "false" ,
157- "cni.install" : "true" ,
158- "cni.customConf" : "true" ,
159- "cni.configMap" : "cni-configuration" ,
160- }
161-
162140 microk8sHelmOverrides = map [string ]string {
163141 "cni.confPath" : "/var/snap/microk8s/current/args/cni-network" ,
164142 "cni.binPath" : "/var/snap/microk8s/current/opt/cni/bin" ,
@@ -183,7 +161,6 @@ var (
183161 // specific CI environment integrations.
184162 // The key must be a string consisting of lower case characters.
185163 helmOverrides = map [string ]map [string ]string {
186- CIIntegrationAKS : aksHelmOverrides ,
187164 CIIntegrationKind : kindHelmOverrides ,
188165 CIIntegrationMicrok8s : microk8sHelmOverrides ,
189166 CIIntegrationMinikube : minikubeHelmOverrides ,
0 commit comments