Need configurable namespaces for helm charts #630
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is similar to Issue #623 however I actually am happy most of the helm charts don't set the namespace because I am using the helm template command to render the template to yaml before applying it to my clusters via gitops. The helm "template" command does not add the Release.namespace see: https://github.com/helm/helm/issues/3553#issuecomment-1186518158
A fix that could solve both #623 and this would be to allow for all of the templates to use a value which if not present could default to the Release.namespace which in turn defaults to "default" when it's not set.
I like this behavior rather than using a value and setting the default to something like "gitea" because it is backwards compatible with the current behavior in all templates that use Release.namespace currently.
See: https://github.com/helm/helm/issues/3553#issuecomment-1186518158
Something like:
Should work
Resolved by #713