From a73813413502a0517993793345e54da7f1893a69 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Fri, 15 Dec 2023 11:02:16 +0000 Subject: [PATCH] Added auth-proxy to new scaleway Signed-off-by: Marcus Noble --- manifests/_apps/auth-proxy.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/manifests/_apps/auth-proxy.yaml b/manifests/_apps/auth-proxy.yaml index 3c81525..a594307 100644 --- a/manifests/_apps/auth-proxy.yaml +++ b/manifests/_apps/auth-proxy.yaml @@ -22,3 +22,29 @@ spec: - kind: Secret jsonPointers: - /data +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: auth-proxy-scaleway + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: cluster.fun + destination: + namespace: auth-proxy + name: scaleway + source: + path: manifests/auth-proxy + repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git" + targetRevision: HEAD + syncPolicy: + automated: {} + syncOptions: + - CreateNamespace=true + ignoreDifferences: + - kind: Secret + jsonPointers: + - /data +---