Files
oam/snippets/helm.sh
2024-08-28 18:33:04 +02:00

32 lines
1.1 KiB
Bash

#!/usr/bin/env sh
helm repo list
helm repo add 'gitlab' 'https://charts.gitlab.io'
helm repo update
helm repo update 'keda'
helm search hub --max-col-width '100' 'ingress-nginx'
helm search repo --versions 'gitlab/gitlab-runner'
helm show values 'gitlab/gitlab'
helm show values 'gitlab/gitlab-runner' --version '0.64.1'
helm pull 'ingress-nginx/ingress-nginx' --version '4.0.6' --destination '/tmp' --untar --untardir 'ingress-nginx'
helm template --namespace 'gitlab' --values "values.gitlab-runner.yaml" --set global.hosts.hostSuffix='test' \
'gitlab-runner' 'gitlab/gitlab-runner'
helm --namespace 'gitlab' upgrade --install --create-namespace --version '0.64.1' 'gitlab-runner' \
--values 'values.gitlab-runner.yml' 'gitlab/gitlab-runner'
helm upgrade --install 'keda' 'keda' --repo 'https://kedacore.github.io/charts' --namespace 'keda' --create-namespace
helm get manifest 'wordpress'
helm -n 'monitoring' delete 'grafana'
helm plugin list
helm plugin install 'https://github.com/databus23/helm-diff'
helm -n 'pocs' diff upgrade --repo 'https://dl.gitea.com/charts/' 'gitea' 'gitea' -f 'values.yaml'