From 4f979d657e715603eb13fbf18f61cfcd2d999efb Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 12 Jul 2026 09:19:07 +0000 Subject: [PATCH] Add Argo CD Application for basicstack.org Deploys the basicstack.org website from Forgejo repository. - Uses internal Forgejo URL (forgejo.forgejo.svc.cluster.local) - Automated sync with prune and selfHeal enabled - Deploys to basicstack-web namespace Closes DEV-272 Co-Authored-By: Paperclip --- apps/argocd/app-basicstack-org.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/argocd/app-basicstack-org.yaml diff --git a/apps/argocd/app-basicstack-org.yaml b/apps/argocd/app-basicstack-org.yaml new file mode 100644 index 0000000..a9aecb2 --- /dev/null +++ b/apps/argocd/app-basicstack-org.yaml @@ -0,0 +1,20 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: basicstack-org + namespace: argocd +spec: + project: default + source: + repoURL: git@forgejo.forgejo.svc.cluster.local:basicstack/basicstack.org.git + targetRevision: main + path: k8s + destination: + server: https://kubernetes.default.svc + namespace: basicstack-web + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true