From de5d64e6e209f4ee60aa63bccd239bb66b92ed76 Mon Sep 17 00:00:00 2001 From: James Mellors Date: Thu, 10 Apr 2025 19:52:00 +0100 Subject: [PATCH] rework --- argo/apps/apps.yaml | 20 ++++++++++++++++++++ argo/apps/kustomization.yaml | 2 ++ controller/kustomization.yaml | 2 ++ 3 files changed, 24 insertions(+) create mode 100644 argo/apps/apps.yaml create mode 100644 argo/apps/kustomization.yaml create mode 100644 controller/kustomization.yaml diff --git a/argo/apps/apps.yaml b/argo/apps/apps.yaml new file mode 100644 index 0000000..5191118 --- /dev/null +++ b/argo/apps/apps.yaml @@ -0,0 +1,20 @@ +resources:apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: apps + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: https://git.james-mellors.com/mello/sealed-secrets.git + targetRevision: main + path: argo/apps + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true \ No newline at end of file diff --git a/argo/apps/kustomization.yaml b/argo/apps/kustomization.yaml new file mode 100644 index 0000000..26e6735 --- /dev/null +++ b/argo/apps/kustomization.yaml @@ -0,0 +1,2 @@ +resources: + - sealed-secrets.yaml diff --git a/controller/kustomization.yaml b/controller/kustomization.yaml new file mode 100644 index 0000000..479c652 --- /dev/null +++ b/controller/kustomization.yaml @@ -0,0 +1,2 @@ +resources: + - controller.yaml