helm create webapp1
- Create the files per the video at https://www.youtube.com/watch?v=jUYNS90nq8U&t=147s, 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 webapp1/values.yaml
minikube service myhelmapp
kubectl create namespace dev
kubectl 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