I want to have a parent chart that generates multiple copies of a subchart. For example, the values.yaml for my parent chart would be :
clients:
- one
- two
- three
When I deploy, I want it to create subchart-release-one
, subchart-release-two
, etc.
Can I do this using native Helm or do I have to use something like Helmfile?
I can go and add loops through all my manifests but this seems improper and tedious.
Having a parent chart allows me to keep track of the clients instead of deploying them separately.