2024-06-04 21:43:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
INSTALL_YAML="manifests/install.yaml"
|
|
|
|
CHART_VERSION="0.9.11"
|
|
|
|
|
2024-08-15 23:46:47 +00:00
|
|
|
echo "# EXTERNAL SECRETS INSTALL RESOURCES" >${INSTALL_YAML}
|
|
|
|
echo "# This file is auto-generated with 'ref-impelmentation/external-secrets/generate-manifests.sh'" >>${INSTALL_YAML}
|
2024-06-04 21:43:36 +00:00
|
|
|
|
|
|
|
helm repo add external-secrets --force-update https://charts.external-secrets.io
|
|
|
|
helm repo update
|
2024-08-15 23:46:47 +00:00
|
|
|
helm template --namespace external-secrets external-secrets external-secrets/external-secrets -f values.yaml --version ${CHART_VERSION} >>${INSTALL_YAML}
|