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.
I want to configure some things in Vault by using environment variables that differ between instances. These are not secrets, so they don't belong in server.extraSecretEnvironmentVars, but I also don't want to hard-code them into values.yaml in server.extraEnvironmentVars, or have to put them on the command-line with --set each time I deploy.
Describe the solution you'd like
My preference would be to put the variables into a ConfigMap and have the Vault Helm chart pull from that. For instance, the Datadog Helm chart lets you do this:
Describe alternatives you've considered
Put the HCL that configures the same thing into a ConfigMap, mount it, and point Vault at that. This should work, but is also much more verbose. For example,
and if there's any reason why merging that config file with the main one doesn't do what you want, then you're out of luck. For instance, what happens if you've got multiple storage stanzas, each with a different part of the config?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to configure some things in Vault by using environment variables that differ between instances. These are not secrets, so they don't belong in
server.extraSecretEnvironmentVars
, but I also don't want to hard-code them intovalues.yaml
inserver.extraEnvironmentVars
, or have to put them on the command-line with--set
each time I deploy.Describe the solution you'd like
My preference would be to put the variables into a ConfigMap and have the Vault Helm chart pull from that. For instance, the Datadog Helm chart lets you do this:
where
Describe alternatives you've considered
Put the HCL that configures the same thing into a ConfigMap, mount it, and point Vault at that. This should work, but is also much more verbose. For example,
and if there's any reason why merging that config file with the main one doesn't do what you want, then you're out of luck. For instance, what happens if you've got multiple
storage
stanzas, each with a different part of the config?The text was updated successfully, but these errors were encountered: