helm create webapp1
- Create the files per the video, copying and pasting from templates-original
- you can also use the files in the solution folder
helm install mywebapp-release webapp1/ --values webapp1/values.yaml
helm upgrade mywebapp-release webapp1/ --values mywebapp/values.yaml
minikube tunnel
k create namespace dev
k create namespace prod
helm install mywebapp-release-dev webapp1/ --values webapp1/values.yaml -f webapp1/values-dev.yaml -n dev
helm install mywebapp-release-prod webapp1/ --values webapp1/values.yaml -f webapp1/values-prod.yaml -n prod
helm ls --all-namespaces