13 lines
295 B
Bash
Executable file
13 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
CHART_VERSION="v0.6.1"
|
|
|
|
helm repo add external-secrets https://charts.external-secrets.io
|
|
helm repo update
|
|
helm upgrade --install \
|
|
external-secrets \
|
|
external-secrets/external-secrets \
|
|
-n external-secrets \
|
|
--version ${CHART_VERSION} \
|
|
--create-namespace \
|
|
--cleanup-on-fail
|