A helm rule
helm lint ./chart
to validate the syntax and structure of the Helm chart.helm template ./chart
to render the templates locally and debug output.helm package ./chart
and store them in the ./dist
folder.helm install <release-name> ./chart --dry-run --debug
for a safe test deployment.helm template -f values.yaml
.values.schema.json
and test with representative values.yaml
files._helpers.tpl
) for repeated logic.<release-name>-<component>
.values.yaml
.values.yaml
with comments explaining each key.README.md
at the chart root explaining installation steps, dependencies, and usage examples.Chart.yaml
.