I'm creating a helm chart that's dependent on the stable/postgres chart. I'm using helm version 2.14.
While specifying this dependency in the requirements.yaml
file, I'd like to set some of the parameters such as persistence.size
which are usually passed using helm install --set
.
I tried to follow the instructions in this post: Set value in dependency of Helm chart
I added this at the end of my values.yaml
:
postgresql:
replication:
enabled: true
slaveReplicas: 2
persistence:
size: 2Gi
But unfortunately after helm dep update
, I inspected the downloaded chart and the values in values.yaml
were not overwritten.
What could be missing here or what are my alternatives? Thank you.