Roll back to previous version helm
Show history and roll back to previous revision (0 = latest-1)
helm history <release> -n <ns> && helm rollback <release> 0 -n <ns>
more helm
all 54 commands →
Search chart versions
helm search repo <chart> --versions | head -20
Show chart default values
helm show values <repo>/<chart> --version <ver>
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