When deploying External Secrets Operator via Helm chart, the default configuration will install ClusterSecretStore and ClusterExternalSecret and other CRDs and these objects will be processed by the operator.
In order to disable both or one of these features, it is necessary to configure the crds.* Helm value, as well as the process* Helm value, as these 2 values are connected.
If you would like to install the operator without ClusterSecretStore and ClusterExternalSecret and ClusterPushSecret management, you will have to :
crds.createClusterExternalSecret to falsecrds.createClusterSecretStore to falsecrds.createClusterPushSecret to falseprocessClusterExternalSecret to falseprocessClusterStore to falseprocessClusterPushSecret to falseExample:
helm install external-secrets external-secrets/external-secrets --set crds.createClusterExternalSecret=false \
--set crds.createClusterSecretStore=false \
--set crds.createClusterPushSecret=false \
--set processClusterExternalSecret=false \
--set processClusterStore=false \
--set processClusterPushSecret=false