From f62fe4973114c3fd1d95c91a24710c624f6aa349 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 3 Mar 2026 06:47:38 +0000 Subject: [PATCH] feat: add nginx-canary argocd application --- apps/nginx-canary/application.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/nginx-canary/application.yaml diff --git a/apps/nginx-canary/application.yaml b/apps/nginx-canary/application.yaml new file mode 100644 index 0000000..1cc990e --- /dev/null +++ b/apps/nginx-canary/application.yaml @@ -0,0 +1,20 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: nginx-canary + namespace: argocd +spec: + project: default + source: + repoURL: http://gitea-http.gitea.svc.cluster.local:3000/admin/k3s-gitops + path: apps/nginx-canary + targetRevision: HEAD + destination: + server: https://kubernetes.default.svc + namespace: nginx-canary + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true