# Todo: Document any required values, if they exist.
$ helm upgrade --install path/to/__CHART__ __CHART__
All configuration values are documented in values.yaml. Check that for references, default values etc. To modify a configuration value for a chart, you can either supply your own values.yaml overriding the default one in the repo:
helm upgrade --install path/to/__CHART__ __CHART__ --values path/to/custom/values/file.yamlOr, you can override an individual configuration setting with helm upgrade --set
helm upgrade --install path/to/__CHART__ __CHART__ --set image.repository="your/image" --set image.tag="1.0.0"// Todo: Write up usage.