Skip to content

Files

Latest commit

c9dbad6 · Jun 21, 2024

History

History
34 lines (27 loc) · 851 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 851 Bytes

Create the helmchart

helm create webapp1

Follow along with the video

Install the first one

helm install mywebapp-release webapp1/ --values webapp1/values.yaml

Upgrade after templating

helm upgrade mywebapp-release webapp1/ --values webapp1/values.yaml

Accessing it

minikube service myhelmapp

Create dev/prod

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