From 807054af802395f6d2e6b5bae3fe49e0cacfadaa Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 6 Apr 2024 14:57:08 +0100 Subject: [PATCH] Added RSS to new cluster Signed-off-by: Marcus Noble --- manifests/_apps/rss.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/manifests/_apps/rss.yaml b/manifests/_apps/rss.yaml index 1d6a561..2179fee 100644 --- a/manifests/_apps/rss.yaml +++ b/manifests/_apps/rss.yaml @@ -26,3 +26,33 @@ spec: kind: Deployment jqPathExpressions: - .spec.template.spec.containers[]?.image +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: cluster-fun-rss + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: rss + name: cluster-fun (v2) + source: + path: manifests/rss + 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 +---