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).
- How can I edit the chart to have a modified config for my app(Redis/Rabbitmq/someapp)?
- Is it possible to edit the chart’s config installed with Helm stable repo? or should I have to have my own repo to edit it?
2
Answers
1.
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:
It’ll install your custom chart instead of the one from stable repository.
2.
Yes, you can install charts from
stable
repository with customvalues.yaml
.To pull a chart and check it locally just run
This will put the chart in a local directory located in your working dir. You can then edit the chart from here, and do installation with