From 66734265eb1c82f61eafdcd5aff3d30e71f72b44 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 6 Apr 2024 13:30:06 +0100 Subject: [PATCH] Added blog to new cluster Signed-off-by: Marcus Noble --- manifests/_apps/blog.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/manifests/_apps/blog.yaml b/manifests/_apps/blog.yaml index cd4c02c..315e8a6 100644 --- a/manifests/_apps/blog.yaml +++ b/manifests/_apps/blog.yaml @@ -27,3 +27,32 @@ spec: jqPathExpressions: - .spec.template.spec.containers[]?.image --- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: cluster-fun-blog + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: blog + name: cluster-fun (v2) + source: + path: manifests/blog + 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 +---