Skip to content

shoplineapp/helm-charts

Repository files navigation

helm-charts

How to use chart sever

Add helm repo

helm repo add shopline-charts https://shoplineapp.github.io/helm-charts

Update chart repository

helm repo update

Helm upgrade command example

(option)You can use --version in your command to lock specify chart version

helm upgrade example-simple shopline-charts/simple -f helm/simple.yaml
helm upgrade example-cronjob shopline-charts/cronjob -f helm/cronjob.yaml --version 0.0.1

How to use subChart

You can find example code at example subChart folder

helm dependency build ./example/subChart
helm install ./example/subChart --name andytest
helm upgrade andytest ./example/subChart

Update subChart version

vi ./example/subChart/requirements.yaml
- version: "0.0.1"
+ version: "0.0.2"
  repository: "https://shoplineapp.github.io/helm-charts"
  alias: second-subChart
helm dependency update ./helm/preview