Update chart dependencies helm
update refreshes Chart.lock from repos; build fetches subcharts from existing lock
helm dependency update ./chart && helm dependency build ./chart
more helm
all 54 commands →
Wait for jobs on install
helm upgrade --install <name> ./chart --wait --wait-for-jobs --timeout 10m -n <ns>
Parse release status as JSON
helm status <rel> -n <ns> -o json | jq '.info.status, .info.last_deployed'
Post-render with kustomize
helm upgrade --install <name> ./chart --post-renderer ./kustomize-hook.sh -n <ns>
Pull and unpack OCI chart
helm pull oci://<host>/charts/<name> --version 1.2.3 --untar --untardir ./charts
Install chart with values file
helm install <release> <chart> -f values.yaml -n <ns> --create-namespace