Open svenakela opened 1 year ago
I never tested such a structure before, but charts like the kube-prometheus-stack
from the prometheus-community
are also using dependency-charts and those values are below a key named the same as the dependency-name in chart.yaml.
So instead of
configuration:
metricsHost: ""
you may write:
kured:
configuration:
metricsHost: ""
Did you test this?
I would like to deploy kured with ArgoCD and we have an app-in-apps setup. Kured is deployed with following
Chart.yaml
:This part works fine, ArgoCD picks it up and deploy Kured as expected. I would like to set some configuration points (endTime, startTime etc) and whatever structure I set in the
values.yaml
file the config is not applied.We do have other external apps deployed in the same way, like ingress-nginx, where the
values.yaml
file adds/overrides values for the dependency. It would be great to get an example of a workingvalues.yaml
that sets one or two run parameters correctly.Thanks in advance.