You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When deploying the minio tenant chart I also need to deploy some extra resources (because of some additional controllers and CRDS I have in my cluster).
Describe the solution you'd like
The same way bitnami charts has an extra resources/deployments, I'd like to have an entry in the values files to generate extra resources. It renders YAML template as part of the chart and it can take advantage of the helper functions (so I have consistent labels, naming). This remove also the need for the chart to support some corner cases CRDs since anyone can inject what they need.
Describe alternatives you've considered
I could use a chart dependency, however, this brings additional complexity and also prevents me from using the chart helpers which can be helpful to generate consistent naming.
The text was updated successfully, but these errors were encountered:
This commit introduces an extraResources value which is directly
rendered as part of the chart like a regular Helm template.
This allows users to add some Kubernetes object they might need as part
of their cluster configuration.
I added in the comment an example of my use case because I use a
different type of ingress and it is easier to configure it this way.
Closes: minio#1642
This commit introduces an extraResources value which is directly
rendered as part of the chart like a regular Helm template.
This allows users to add some Kubernetes object they might need as part
of their cluster configuration.
I added in the comment an example of my use case because I use a
different type of ingress and it is easier to configure it this way.
Closes: #1642
Co-authored-by: Pedro Juarez <pjuarezd@users.noreply.github.com>
Is your feature request related to a problem? Please describe.
When deploying the minio tenant chart I also need to deploy some extra resources (because of some additional controllers and CRDS I have in my cluster).
Describe the solution you'd like
The same way bitnami charts has an extra resources/deployments, I'd like to have an entry in the values files to generate extra resources. It renders YAML template as part of the chart and it can take advantage of the helper functions (so I have consistent labels, naming). This remove also the need for the chart to support some corner cases CRDs since anyone can inject what they need.
Describe alternatives you've considered
I could use a chart dependency, however, this brings additional complexity and also prevents me from using the chart helpers which can be helpful to generate consistent naming.
The text was updated successfully, but these errors were encountered: