From 376a11ec2f5ba1098f828587d768d3efc7d43419 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Fri, 15 Dec 2023 11:20:52 +0000 Subject: [PATCH] Added monitoring to new scaleway Signed-off-by: Marcus Noble --- manifests/_apps/monitoring.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/manifests/_apps/monitoring.yaml b/manifests/_apps/monitoring.yaml index bcdef4d..cc341d9 100644 --- a/manifests/_apps/monitoring.yaml +++ b/manifests/_apps/monitoring.yaml @@ -22,3 +22,29 @@ spec: - kind: Secret jsonPointers: - /data +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: monitoring-scaleway + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: monitoring + name: scaleway + 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 +---