Skip to content

tchia04/helm-webapp

This branch is 4 commits ahead of devopsjourney1/helm-webapp:main.

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published