diff --git a/install/autodetect.go b/install/autodetect.go index 3a5bf8c47c..96ca89d086 100644 --- a/install/autodetect.go +++ b/install/autodetect.go @@ -209,7 +209,7 @@ func (k *K8sInstaller) autodetectKubeProxy(ctx context.Context, helmValues map[s // Use HelmOpts to set auto kube-proxy installation setIfUnset("kubeProxyReplacement", func() string { - if !versioncheck.MustCompile(">=1.14.0")(k.chartVersion) { + if versioncheck.MustCompile(">=1.14.0")(k.chartVersion) { return "true" } return "strict"