Troubleshooting
Errors when using ArgoCD to deploy
If you are using ArgoCD to manage the operator, you will encounter the issue which complains the CRDs too long. A similar issue can be found here: issue. The recommended solution is to split the operator into two Argo apps, such as:
The first app is just for installing the CRDs with
Replace=true
directly, snippet:
The second app that installs the Helm chart with
skipCrds=true
(new feature in Argo CD 2.3.0), snippet:
Last updated