16 lines
558 B
Bash
16 lines
558 B
Bash
#!/bin/sh
|
|
|
|
export HOME=/helm-working-dir
|
|
|
|
helm repo add --username argocd-helm --password "$OCEANBOX_HELM_ACCESS_TOKEN" oceanbox \
|
|
https://gitlab.com/api/v4/projects/54396343/packages/helm/stable
|
|
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
helm repo add cerbos https://download.cerbos.dev/helm-charts
|
|
helm repo add dapr https://dapr.github.io/helm-charts/
|
|
helm repo add ncsa https://opensource.ncsa.illinois.edu/charts
|
|
helm repo add dex https://charts.dexidp.io
|
|
helm repo add openfga https://openfga.github.io/helm-charts
|
|
|
|
helm repo update
|