I have Chart.yaml
as:
dependencies:
- name: mysql
version: "5.0.9"
repository: "https://charts.bitnami.com/bitnami"
alias: a
- name: mysql
version: "5.0.9"
repository: "https://charts.bitnami.com/bitnami"
alias: b
and values.yaml
as
mysql:
somename: Overriden
somename2: NotOverriden
a:
somename: A
b:
somename: B
but the helm is reading only values from a:
and b:
. I would expect that values from mysql:
are applied to both a:
and b:
and overridden where needed.
Is this possible at all, or is there some other way?