Modify Helm Chart

Now if you want to do some modification, like if you want to increase no. of replica sets then execute the previous command and replace install with upgrade, example for updating replica sets.

helm upgrade <name-of-chart> mychart/ --set replicaCount=2 --set service.type=LoadBalancer

helm chart

Package the Helm Chart

Once we are done we can package the chart and can move it to a remote repository for sharing it with others too. Similarly there are some already created charts that we can deploy and can be easily found on google.
For packaging the chart executes the command.

helm package mychart

Helm will create a mychart-0.1.0.tgz package in our working directory, which will use the name and version from the metadata defined in the Chart.yaml file.

Subscribe Now