{{ .Values.image.tag }} gets replaced with the value from values.yaml or a --set flag.helm rollback my-app 1 reverts to revision 1.helm install deploys a chart. helm upgrade updates a release. helm upgrade --install does both idempotently.helm list shows all releases. helm history shows revision history. helm rollback reverts.helm template renders templates without installing. Use this to inspect what will be applied.kubectl apply -k ./dir or kubectl kustomize ./dir to preview.