What have I done:
Added Stable repo into my helm and installed a chart(eg.: Redis, RabbitMQ/someapp).
helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm install redis/rabbitMQ/someapp
What do I need:
Now I need to change the configurations of my chart(Redis/RabbitMQ/someapp).
To edit the chart, you need to copy the chart to some directory. Edit the chart as per your requirement. Go to the parent directory of the chart and perform the following command:
$ helm install <release-name> <chart-name>
It'll install your custom chart instead of the one from stable repository.
Yes, you can install charts from stable
repository with custom values.yaml
.
$ helm install --values custom_values.yaml <release-name> stable/<chart-name>