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

Move crds directory to the place that helm 3 expects #539

Closed
wants to merge 3 commits into from

Conversation

restingbull
Copy link

@restingbull restingbull commented Mar 19, 2025

A slightly ambigious wording in the helm crd docs can lead one to expect the crds directory to exist inside templates.

One can, however, check to see if helm understands where the crds live by using helm show crds.

Before this pr:

$ helm show crds charts/cloudnative-pg
$

After:

$ helm show crds charts/cloudnative-pg
description: |-
{{- if .Values.crds.create }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition ...

fixes: #537

@restingbull
Copy link
Author

restingbull commented Mar 19, 2025

A slightly ambigious wording in the helm crd docs can lead one to expect the crds directory to exist inside templates.

One can, however, check to see if helm understands where the crds live by using helm show crds.

Before this pr:

$ helm show crds charts/cloudnative-pg
$

After:

$ helm show crds charts/cloudnative-pg
description: |-
{{- if .Values.crds.create }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition ...

fixes: #537

Oh dear. This turns out to be backwards incompatible change:

  • helm 3 doesn't template crds.
  • crds.create = true is no longer viable, so removed.

I can understand if this is the wrong time to make this update.

A slightly ambigious wording in the helm [crd docs](https://helm.sh/docs/topics/charts/#custom-resource-definitions-crds) can lead one to expect the crds directory to exist inside `templates`.

One can, however, check to see if helm understands where the crds live by using `helm show crds`.

Before this pr:
```
$ helm show crds charts/cloudnative-pg
$
```

After:
```
$ helm show crds charts/cloudnative-pg
                description: |-
{{- if .Values.crds.create }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition ...
```

Signed-off-by: Corbin McNeely-Smith <[email protected]>
Signed-off-by: Corbin McNeely-Smith <[email protected]>
@phisco
Copy link
Collaborator

phisco commented Mar 20, 2025

helm doesn't handle in-place CRD updates, we have to keep it in the templates folder otherwise it'll fail on upgrades as soon as we add a field or change anything in the CRD. That's a known limitation of helm.

@restingbull
Copy link
Author

helm doesn't handle in-place CRD updates, we have to keep it in the templates folder otherwise it'll fail on upgrades as soon as we add a field or change anything in the CRD. That's a known limitation of helm.

Hm. Helm is being unhelpful here -- keeping the crds in templates forces method 2, over method 1.

Unpleasant packaging issue.

With that in mind, why keep the CRDs in the same chart as the operator?

@itay-grudev
Copy link
Collaborator

@restingbull How do you propose distributing them otherwise? This approach allows us to make sure you have the appropriate CRD versions when updating the operator. If you need to manage them in some other way depending on your environment you can always set the crds.create=false flag.

@restingbull
Copy link
Author

@restingbull How do you propose distributing them otherwise? This approach allows us to make sure you have the appropriate CRD versions when updating the operator. If you need to manage them in some other way depending on your environment you can always set the crds.create=false flag.

More layers, if a toy example is correct. Mind you, helm doesn't document the dependency ordering so this idea may be doomed from the start -- but as of v3.17.1, the dependencies are listed first during a template.

So, the hypothetical solution is:

  • Extract the CRDs to a separate chart
  • Add the chart as a dependency on the operator chart.

I'll try this out and open a PR if it works.

@restingbull restingbull deleted the issue/537 branch March 20, 2025 19:21
@itay-grudev
Copy link
Collaborator

Even with a subchart you still have the limitation that Helm doesn't upgrade 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

Successfully merging this pull request may close these issues.

helm 3 cannot find crds
3 participants