Open
Description
I have a bunch of helm charts deployments, most with their own configmap/secret. I also have a couple of shared secrets and configmaps.
The current configmaps and secrets have the same name as the deployment.
My options:
- auto. I will have to rename everything which is fine, but this will not cover the shared stuff, and will not cover envFrom.
- reload. I could also use some jujitsu templating (or statically) and add the names of all configmaps/secrets used in each deployment.
- search/match. I could also slap search/match on everything and call it a day.
In my situation, the first option does not seem like a good idea.
The third option is very appealing, but are there performance implications?
If the third option is out, then reload will be the winning option.
Activity