From 4ebdfbaff494e61ff01ab19b2a05c24c324335c0 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 1 Mar 2026 14:45:29 +1100 Subject: [PATCH] feat: add root-app for au-syd1 (#1) enable argocd to self-deploy using the app of apps method - add root-application deployed from bootstrap process Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/1 --- clusters/au-syd1/bootstrap/au-syd1-apps.yaml | 19 +++++++++++++++++++ clusters/au-syd1/bootstrap/kustomization.yaml | 1 + 2 files changed, 20 insertions(+) create mode 100644 clusters/au-syd1/bootstrap/au-syd1-apps.yaml diff --git a/clusters/au-syd1/bootstrap/au-syd1-apps.yaml b/clusters/au-syd1/bootstrap/au-syd1-apps.yaml new file mode 100644 index 0000000..3e10352 --- /dev/null +++ b/clusters/au-syd1/bootstrap/au-syd1-apps.yaml @@ -0,0 +1,19 @@ +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: au-syd1-apps + namespace: argocd +spec: + project: default + source: + repoURL: https://git.unkin.net/unkin/argocd-apps + targetRevision: HEAD + path: clusters/au-syd1/apps + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true diff --git a/clusters/au-syd1/bootstrap/kustomization.yaml b/clusters/au-syd1/bootstrap/kustomization.yaml index 3be43f8..be25762 100644 --- a/clusters/au-syd1/bootstrap/kustomization.yaml +++ b/clusters/au-syd1/bootstrap/kustomization.yaml @@ -4,3 +4,4 @@ kind: Kustomization resources: - https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github_raw/argoproj/argo-cd/refs/tags/v3.3.2/manifests/ha/install.yaml + - au-syd1-apps.yaml