Skip to content

ArgoCD to deploy a upstream(bitnami) chart. Values.yml do not apply config #5881

Answered by jannfis
hamps-contrib asked this question in Q&A
Discussion options

You must be logged in to vote

Without seeing your values.yaml I can just guess here that you might be using a verbatim version of values.yaml for the kube-prometheus stack.

When Helm is rendering a dependency, it will require the dependencies' values to be provided below the dependency's name as key, so that Helm will know which part of the values.yaml to pass to the dependency when rendering.

So, in order to provide the values to a dependency named kube-prometheus and given your original values.yaml be like

foo: bar
bar:
  foo: bar

it should be stored in your values.yaml like the following instead:

kube-prometheus:
  foo: bar
  bar:
    foo: bar

HTH.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@hamps-contrib
Comment options

Answer selected by jannfis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants