From a1cde6e9915c14e0f0552b6973a7be5b781245b3 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 6 Apr 2024 13:15:51 +0100 Subject: [PATCH] Added monitoring to new cluster Signed-off-by: Marcus Noble --- manifests/_apps/monitoring.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/manifests/_apps/monitoring.yaml b/manifests/_apps/monitoring.yaml index 9c0d393..5c4bb52 100644 --- a/manifests/_apps/monitoring.yaml +++ b/manifests/_apps/monitoring.yaml @@ -23,3 +23,28 @@ spec: jsonPointers: - /data --- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: cluster-fun-monitoring + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: monitoring + name: cluster-fun (v2) + source: + path: manifests/monitoring + repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git" + targetRevision: HEAD + syncPolicy: + automated: {} + syncOptions: + - CreateNamespace=true + ignoreDifferences: + - kind: Secret + jsonPointers: + - /data +---