18 lines
355 B
Bash
18 lines
355 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
CHART_VERSION=0.5.7
|
||
|
NAMESPACE=external-secrets
|
||
|
|
||
|
helm repo add external-secrets https://charts.external-secrets.io
|
||
|
helm repo update
|
||
|
|
||
|
kubectl create ns ${NAMESPACE}
|
||
|
|
||
|
helm upgrade --install \
|
||
|
external-secrets \
|
||
|
external-secrets/external-secrets \
|
||
|
-n ${NAMESPACE} \
|
||
|
--version ${CHART_VERSION} \
|
||
|
--set "installCRDs=true" \
|
||
|
--cleanup-on-fail
|