From 9a8d3095f7c545b25eef8c061ed6a897755bafa6 Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Mon, 29 Jan 2024 10:45:09 +0100 Subject: [PATCH] Allow vSphere CSI driver to be disabled vmware-vsphere-csi-driver-operator disables the driver when it cannot talk to vCenter, e.g. when it does not have valid credentials. --- pkg/operator/csidriveroperator/csioperatorclient/vsphere.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operator/csidriveroperator/csioperatorclient/vsphere.go b/pkg/operator/csidriveroperator/csioperatorclient/vsphere.go index 0426fa6e9..1b3e132f4 100644 --- a/pkg/operator/csidriveroperator/csioperatorclient/vsphere.go +++ b/pkg/operator/csidriveroperator/csioperatorclient/vsphere.go @@ -41,6 +41,6 @@ func GetVMwareVSphereCSIOperatorConfig() CSIOperatorConfig { CRAsset: "csidriveroperators/vsphere/09_cr.yaml", DeploymentAsset: "csidriveroperators/vsphere/08_deployment.yaml", ImageReplacer: strings.NewReplacer(pairs...), - AllowDisabled: false, + AllowDisabled: true, } }