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

10 lines
282 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 \
--version: 7.3.6 \
--release-name argocd \
--api-versions monitoring.coreos.com/v1 \
--values argocd-values.yaml