Hello GrandoKevin-7124, the Azure Container Storage extension installs its own cert-manager Helm chart as a dependency and as a result it can cause conflicts when an existing cert-manager is already deployed, especially when both compete for the leader election lease in the kube-system namespace. The Azure CLI automatically enables the ACS extension, which internally uses a Helm chart. Unfortunately, the Helm chart does not expose a documented way to disable the bundled cert-manager dependency. As a result, you get two cert-manager instances, both trying to control the same leader election lock.
As a workaround you can either patch the ACS-Installed cert-manager or skip ACS and use OpenEBS directly as below-
helm repo add openebs https://openebs.github.io/charts
helm repo update
helm install openebs openebs/openebs \
--namespace openebs \
--create-namespace \
-f custom-values.yaml