Install multiple helm charts with different values files in the same namespace? #1495
-
Based on: https://github.com/fluxcd/flux2-kustomize-helm-example/tree/main/apps/staging I have a namespace podinfo with one chart and app running = podinfo. But what if I need to install multiple app/helm charts each with its separate values file in the same namespace? I was not able to find an example doing that in: Am I missing something in the docs on how to do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
My project would need this support as well. I haven't tried it yet, but my first attempt to handle this would be to define a HelmRelease per instance I want to install. This maps to how to currently handle this requirement with using Helm - the same chart deployed multiple times using a different release name and values. |
Beta Was this translation helpful? Give feedback.
My project would need this support as well.
I haven't tried it yet, but my first attempt to handle this would be to define a HelmRelease per instance I want to install. This maps to how to currently handle this requirement with using Helm - the same chart deployed multiple times using a different release name and values.