diff --git a/charts/operator/templates/deployment.yaml b/charts/operator/templates/deployment.yaml index da26d7fc..69b7e659 100644 --- a/charts/operator/templates/deployment.yaml +++ b/charts/operator/templates/deployment.yaml @@ -106,6 +106,8 @@ spec: value: {{ .Values.controllers.networking | quote }} - name: OSAC_ENABLE_BAREMETAL_INSTANCE_CONTROLLER value: {{ .Values.controllers.bareMetalInstance | quote }} + - name: OSAC_ENABLE_STORAGE_CONTROLLER + value: {{ .Values.controllers.storageController | quote }} securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true diff --git a/charts/operator/values.yaml b/charts/operator/values.yaml index f38e5ab1..48df1a78 100644 --- a/charts/operator/values.yaml +++ b/charts/operator/values.yaml @@ -30,6 +30,7 @@ controllers: tenant: true networking: true bareMetalInstance: true + storageController: false configSecret: name: "osac-config"