Show chart default values helm
Print default values.yaml for a chart version
helm show values <repo>/<chart> --version <ver>
more helm
all 54 commands →
Package chart
helm package ./mychart --destination ./dist
Push chart to OCI registry
helm push mychart-1.0.0.tgz oci://registry.example.com/charts
Install from OCI
helm install myrelease oci://registry.example.com/charts/mychart --version 1.0.0
Lint chart
helm lint ./mychart -f values-prod.yaml --strict
Force resource replacement
helm upgrade <release> ./mychart -n <ns> --force