Files
home-cluster-ops/scripts/install-argocd.sh
2024-07-14 19:34:55 +10:00

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