Package chart for distribution helm
Create a versioned .tgz package from a chart directory
helm package ./mychart --version 1.2.3 --app-version 1.2.3
more helm
all 54 commands →
Push chart to OCI registry
helm push mychart-1.2.3.tgz oci://registry.example.com/charts
Lint a chart
helm lint ./mychart -f values.yaml --strict
Render one template
helm template <name> ./chart --show-only templates/deployment.yaml
Template with version gates
helm template <name> ./chart --kube-version 1.29 --api-versions policy/v1 --include-crds
reuse-values pitfall
helm upgrade --install <name> ./chart --reset-values -f values.yaml