Skip to content
New issue

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

Helmfile silently ignores CRDs (and removes them on apply) if strategicMergePatches are used #1924

Open
intelfx opened this issue Jul 22, 2021 · 2 comments

Comments

@intelfx
Copy link

intelfx commented Jul 22, 2021

Trying to deploy ArgoCD using Helmfile:

(./argocd contains the 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

@dippynark
Copy link

I am seeing the same thing when using transformers

@dippynark
Copy link

dippynark commented Oct 27, 2024

Did some investigation into this:

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants