From e65858bcd42d55a9e739f6059d15d2c9da8fe635 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 6 Apr 2024 13:29:08 +0100 Subject: [PATCH] Added dashboard to new cluster Signed-off-by: Marcus Noble --- manifests/_apps/dashboard.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/manifests/_apps/dashboard.yaml b/manifests/_apps/dashboard.yaml index 051a9cf..a3e8e84 100644 --- a/manifests/_apps/dashboard.yaml +++ b/manifests/_apps/dashboard.yaml @@ -27,3 +27,32 @@ spec: jqPathExpressions: - .spec.template.spec.containers[]?.image --- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: cluster-fun-dashboard + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: dashboard + name: cluster-fun (v2) + source: + path: manifests/dashboard + repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git" + targetRevision: HEAD + syncPolicy: + automated: {} + syncOptions: + - CreateNamespace=true + ignoreDifferences: + - kind: Secret + jsonPointers: + - /data + - group: apps + kind: Deployment + jqPathExpressions: + - .spec.template.spec.containers[]?.image +---