helm version
# :: Create demo and Install
helm create springboot
helm lint springboot
helm install <releasename> --debug --dry-run springboot
helm install firstspringboot springboot
# :: Upgrade and Rollback
Update Default version in Chart.yaml then update
helm upgrade firstspringboot springboot
helm list -a
helm rollback firstspringboot 1
helm rollback firstspringboot 2
helm rollback firstspringboot 3
helm rollback firstspringboot 1
# toggle between revision number ie. replace 1
# :: index helm repo
helm repo index firstspringboot
# :: Delete & Uninstall
helm delete firstspringboot
# :: Add , List , Search Helm Packages
helm repo add bitnami https:
helm repo list
helm search repo bitnami
helm repo update
helm repo remove bitnami
# :: Download, Install ,Update value & Install , Delete
helm install redis bitnami/redis
helm delete redis
# :: Helm Plugin
helm plugin install https:
helm plugin install https:
helm plugin install https:
helm plugin install https:
helm diff secondspringboot springboot --allow-unrelease
helm upgrade firstspringboot springboot
helm diff revision firstspringboot 1 2
helm diff revision secondspringboot 1 3