-
Notifications
You must be signed in to change notification settings - Fork 82
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
Add Namesapces to Chart #120
Comments
If anyone would give a thumbs up on the idea, I'd happily provide an MR. Helm also suggests to do it this way, if you wanna use namespaces. |
What's the added value of adding namespaces to the resources? From what I can tell, most GitOps tools can already deploy to namespaces. |
When using GitOps tools many of us use It feels inconsistent to have namespaces in part of the manifests but not others. (*) Many of us even render the manifests first and commit them for review to have a better understanding of what's going to happen in CI. |
Many users (including me) complain about the missing namespace in helm template. Having |
Preflight Checklist
Problem Description
The objects generated by Helm do not wear a Namespace. There is no way to specify one, as Helm's
namespace
argument is pretty inconsistent.Proposed Solution
Add
Namespace
-properties to all object's yaml wrapped in a condition. This would give the opportunity to set the namespace usingValues
and would otherwise not affect at all.Alternatives Considered
Export objects with
helm template
and specify-n
onkubectl
. Does not really go with most GitOps flows.Additional Information
No response
The text was updated successfully, but these errors were encountered: