From ee0c2b2f53a4924c1a79e7827030567705244c44 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Fri, 15 Dec 2023 11:17:42 +0000 Subject: [PATCH] Added take to new scalway Signed-off-by: Marcus Noble --- manifests/_apps/tank.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/manifests/_apps/tank.yaml b/manifests/_apps/tank.yaml index 193fa81..3d29b5d 100644 --- a/manifests/_apps/tank.yaml +++ b/manifests/_apps/tank.yaml @@ -26,3 +26,33 @@ spec: kind: Deployment jqPathExpressions: - .spec.template.spec.containers[]?.image +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: tank-scaleway + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: tank + name: scaleway + source: + path: manifests/tank + 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 +---