17 lines
578 B
Bash
17 lines
578 B
Bash
#!/bin/sh
|
|
# shellcheck disable=SC2154
|
|
|
|
export HOME=/plugin
|
|
|
|
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
|