-
Add a repo to your local helm
-
helm repo add [name] [url]
helm repo add tyk-helm https://helm.tyk.io/public/helm/charts/ -
Update repo.
-
helm repo update
-
Install an app using helm.
-
helm install [name] [chart] --values [yaml-file/url] --namespace [namespace]
helm install tyk-pro tyk-helm/tyk-pro --values ./values.yaml -n tyk -
Upgrade an app. If you already have an app(say tyk-gateway) installed and want to modify it, you can modify it in values.yaml and run helm upgrade to take effect Or if you want to install new app(say tyk-operator), you can define this new app in values.yaml and run helm upgrade.
-
helm upgrade tyk-pro tyk-helm/tyk-pro -f values.yaml -n tyk
-
Remove an app.
-
helm uninstall [release] name]
helm uninstall tyk-pro
-
List all the available releases across all namespaces.
-
helm list --all-namespaces
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
tyk-operator tyk 1 2023-06-06 12:32:11.456305 +0800 +08 deployed tyk-operator-0.13.0
tyk-pro tyk 40 2023-06-15 17:31:54.640602 +0800 +08 deployed tyk-pro-0.14.0
tyk-storage-postgres tyk 1 2023-06-06 17:06:22.570312 +0800 +08 deployed postgresql-12.5.6 15.3.0
-
From step 8 check with which chart version your app was installed, for e.g tyk-pro was installed with 0.14.0 , if want to install an app with specific chart version, use command
-
helm install tyk-pro tyk-helm/tyk-pro --values ./values.yaml -n tyk --version [chart-version]
Comments
0 comments
Please sign in to leave a comment.