k create ns web
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm search repo bitnami/nginx
helm show values bitnami/nginx
helm install nginx bitnami/nginx -n web --set replicaCount=2helm list -n web
helm status nginx -n web
helm upgrade nginx bitnami/nginx -n web --set replicaCount=3helm history nginx -n web
helm rollback nginx 1 -n web
helm uninstall nginx -n web