A simple Helm charts server and service template for Kubernetes environment
Sets up local helm configuration by reading config (default '~/.kube/config') and using the default context.
Assumed ~/.kube/config
already configured properly and using correct default context.
helm init
This command registers specified charts repository served on https://services.k8s.community/charts
helm repo add community-charts https://services.k8s.community/charts
Update information on available charts in all registered chart repositories
helm repo up
Show charts repository list
helm repo list
Search any chart in repository
helm search [keywords]
First or manually release of the chart in default
kubernetes namespace
helm install <your-release-name> <absolute path to the chart> --wait
Upgrade/install the release k8sapp-stage
in repository community-charts
on stage
kubernetes namespace
helm upgrade k8sapp-stage community-charts/k8sapp -i --wait --namespace=stage
See all releases with revisions
helm list
All the contributors are welcome. If you would like to be the contributor please accept some rules.
- The pull requests will be accepted only in "develop" branch
- All modifications or additions should be tested
Thank you for your understanding!