Skip to content

tech-thinker/helm-charts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Services

Installation guide of service.

Helm:

  1. Add Helm Repository:

    helm repo add <repository-name> <repository-url>
    # or private git repository
    # helm repo add tech-thinker https://tech-thinker.github.io/helm-charts
    
    helm repo update
  2. Inspect the values of chart.

    helm show values <chart-name>
    # If you want to save the values to yaml file, use:
    helm show values <chart-name> > values.yaml
  3. App Installation:

    helm install <release-name>  <chart-name>  -n <namespace> -f values.yaml
  4. List of Installed App:

    helm list -n <namespace>
  5. Uninstall App:

    helm uninstall <release-name> -n <namespace>
  6. Upgrade App:

    helm upgrade <release-name> <chart-name> -n <namespace> -f values.yaml
  7. Rollback App:

    helm rollback <release-name> <revision> -n <namespace>
  8. Create Helm Chart:

    helm create <chart-name>
  9. Package Helm Chart:

    helm package <chart-name>
  10. Publish Helm Chart:

    helm push <chart-name>-<version>.tgz <repository>

About

Public Helm Chart registry.

Resources

Stars

Watchers

Forks

Packages

No packages published