/charts

⎈ Helm Charts

Primary LanguageSmarty

helm-charts

Usage

  1. Add or update a Helm chart: push your source code of Helm chart under charts/<your chart>
  2. New release will be created by GitHub Actions (e.g. https://github.com/kriipke/helm-charts/releases/tag/mysql-operator-0.1.0)
  3. Add this helm chart repo to your helm client configuration
    helm repo add kriipke https://kriipke.github.io/helm-charts
    helm repo update
    
  4. Update repo and search
    helm search repo kriipke
    NAME                     	CHART VERSION	APP VERSION	DESCRIPTION
    kriipke/helm-example  	0.1.0        	v0.0.1     	Simple API application.
    kriipke/mysql-operator	0.1.0        	v0.2.0     	A Helm chart for Kubernetes
    
  5. Install
    helm install example-from-my-repo kriipke/helm-example
    
  6. Upgrade (optional)
    helm upgrade example-from-my-repo kriipke/helm-example --set xxx=aaa
    
  7. Uninstall
    helm uninstall example-from-my-repo
    

Setup

follow chart-releaser Action