8 lines
235 B
Bash
8 lines
235 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
kubectl create namespace argocd || echo "Namespace argocd already exists"
|
|
helm template argocd \
|
|
oci://ghcr.io/argoproj/argo-helm/argo-cd \
|
|
--api-versions monitoring.coreos.com/v1 \
|
|
--values argocd-values.yaml |