17 lines
313 B
Bash
Executable file
17 lines
313 B
Bash
Executable file
#!/bin/bash
|
|
VERSION=5.37.1
|
|
RELEASE=argocd
|
|
NAMESPACE=argocd
|
|
|
|
helm repo add argo https://argoproj.github.io/argo-helm
|
|
helm repo update
|
|
|
|
helm upgrade --cleanup-on-fail \
|
|
--install $RELEASE argo/argo-cd \
|
|
--namespace $NAMESPACE \
|
|
--create-namespace \
|
|
--values values.yaml \
|
|
--version ${VERSION} \
|
|
--wait
|
|
|