diff --git a/cli/internal/helm/charts/cilium/values.yaml b/cli/internal/helm/charts/cilium/values.yaml index bfc2190cb..2cf46c2bc 100644 --- a/cli/internal/helm/charts/cilium/values.yaml +++ b/cli/internal/helm/charts/cilium/values.yaml @@ -132,13 +132,7 @@ extraArgs: [] extraEnv: [] # -- Additional agent hostPath mounts. -extraHostPathMounts: - - name: dev-net - mountPath: /dev/net - hostPath: /dev/net - hostPathType: Directory - readOnly: true - mountPropagation: HostToContainer +extraHostPathMounts: [] # -- Additional agent volumes. extraVolumes: [] @@ -525,7 +519,7 @@ encryption: wireguard: # -- Enables the fallback to the user-space implementation. - userspaceFallback: true + userspaceFallback: false # -- Deprecated in favor of encryption.ipsec.keyFile. # Name of the key file inside the Kubernetes secret configured via secretName. diff --git a/cli/internal/helm/charts/cilium/values.yaml.tmpl b/cli/internal/helm/charts/cilium/values.yaml.tmpl index ee79f196c..5aef1fd9d 100644 --- a/cli/internal/helm/charts/cilium/values.yaml.tmpl +++ b/cli/internal/helm/charts/cilium/values.yaml.tmpl @@ -522,7 +522,7 @@ encryption: wireguard: # -- Enables the fallback to the user-space implementation. - userspaceFallback: true + userspaceFallback: false # -- Deprecated in favor of encryption.ipsec.keyFile. # Name of the key file inside the Kubernetes secret configured via secretName. @@ -1582,13 +1582,7 @@ operator: extraEnv: [] # -- Additional cilium-operator hostPath mounts. - extraHostPathMounts: - - name: dev-net - mountPath: /dev/net - hostPath: /dev/net - hostPathType: Directory - readOnly: true - mountPropagation: HostToContainer + extraHostPathMounts: [] # -- Additional cilium-operator volumes. extraVolumes: [] diff --git a/cli/internal/helm/values.go b/cli/internal/helm/values.go index 8c89014e3..1dcbd9726 100644 --- a/cli/internal/helm/values.go +++ b/cli/internal/helm/values.go @@ -49,8 +49,7 @@ var azureVals = map[string]any{ "enabled": true, }, "encryption": map[string]any{ - "enabled": true, - "type": "wireguard", + "enabled": false, }, "l7Proxy": false, "ipam": map[string]any{