mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
909bfb9274
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
22 lines
381 B
Bash
Executable File
22 lines
381 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
set -o errtrace
|
|
shopt -s inherit_errexit
|
|
|
|
echo "Pulling cert-manager Helm chart..."
|
|
|
|
function cleanup {
|
|
rm -r "charts/cert-manager/README.md" "charts/cert-manager-v1.10.0.tgz"
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
helm pull cert-manager \
|
|
--version 1.10.0 \
|
|
--repo "https://charts.jetstack.io" \
|
|
--untar \
|
|
--untardir "charts"
|
|
|
|
echo # final newline
|