We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to deploy ArgoCD using Helmfile:
(./argocd contains the argocd install.yaml)
./argocd
install.yaml
releases: - name: argocd namespace: argocd chart: ./argocd
— works
releases: - name: argocd namespace: argocd chart: ./argocd strategicMergePatches: - apiVersion: apps/v1 kind: Deployment metadata: namespace: argocd name: argocd-server spec: template: spec: containers: - name: argocd-server command: - argocd-server - --staticassets - /shared/app - --insecure
— doesn't work, deletes all existing CRDs on apply
The text was updated successfully, but these errors were encountered:
I am seeing the same thing when using transformers
Sorry, something went wrong.
Did some investigation into this:
jsonPatches
strategicMergePatches
transformers
crds
templates
So to fix this you can add the following to your helmfile:
helmDefaults: # Ensure that helm template renders CRDs: # https://github.com/roboll/helmfile/issues/1924#issuecomment-2439925428 args: - --include-crds
No branches or pull requests
Trying to deploy ArgoCD using Helmfile:
(
./argocd
contains the argocdinstall.yaml
)— works
— doesn't work, deletes all existing CRDs on apply
The text was updated successfully, but these errors were encountered: