Skip to content

cyrip/helm-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helm package example

Install push plugin

helm plugin install https://github.com/chartmuseum/helm-push.git

Add our own repository

helm repo add codeware http://charts.codeware.local
helm repo update

Lint and package

helm lint laravel1/
helm package laravel1/

Push package

helm cm-push laravel1-0.1.0.tgz http://charts.codeware.local
helm repo update
helm search repo codeware
helm inspect chart codeware/laravel1
helm inspect values codeware/laravel1

Install package

helm repo update
helm install laravel1 codeware/laravel1 --namespace laravel-app

Upgrade/install package

helm --namespace laravel-app upgrade -i laravel1 codeware/laravel1 --set autoscaling.enabled=false --set ingress.hosts[0].host="laravel-app.codeware.icu" --set ingress.hosts[0].paths[0].path="/" --set ingress.hosts[0].paths[0].pathType=ImplementationSpecific --reuse-values
helm --namespace laravel-app upgrade -i laravel1 codeware/laravel1 -f values-override.yml --reuse-values

About

Helm example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages