From 22d831a200f7bace991dc42d3ce7b0e73c6cd488 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Tue, 2 Nov 2021 14:09:00 +0530 Subject: [PATCH] deploy: remove expandCSIVolumes feature gate from deployment The `expandCSIVolumes` feature gate is beta since kubernetes 1.16 version and we no longer wanted to explictly enable it in the deployment. Signed-off-by: Humble Chirammal --- scripts/minikube.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/minikube.sh b/scripts/minikube.sh index 1cb38f5e835..4a7ca00c622 100755 --- a/scripts/minikube.sh +++ b/scripts/minikube.sh @@ -160,7 +160,7 @@ CSI_RESIZER_VERSION=${CSI_RESIZER_VERSION:-"v1.2.0"} CSI_NODE_DRIVER_REGISTRAR_VERSION=${CSI_NODE_DRIVER_REGISTRAR_VERSION:-"v2.2.0"} #feature-gates for kube -K8S_FEATURE_GATES=${K8S_FEATURE_GATES:-"ExpandCSIVolumes=true"} +K8S_FEATURE_GATES=${K8S_FEATURE_GATES:-""} #extra-config for kube https://minikube.sigs.k8s.io/docs/reference/configuration/kubernetes/ EXTRA_CONFIG_PSP="--extra-config=apiserver.enable-admission-plugins=PodSecurityPolicy --addons=pod-security-policy"