26
loading...
This website collects cookies to deliver better user experience
overriding helm values
helm install --name --values config.yaml --timeout 300 --wait stable/mysql
Setting environment variable on creating release
helm install --set x=somevalue -f config.yaml --name
To check the syntax of the helm chart
helm lint
helm lint
To upgrade the chart or variables in a release
helm upgrade --values config.yaml
To inspect the chart details along with the chart name.
helm inspect
To inspect the values assigned in the chart along with the chart name.
helm inspect values
To create package as a .tgz file [if you have chartmuseum]
_helm package _
_helm package . _
To install chart dependencies
helm dep up _
_helm dependency update