From 80d92718bdede73e18eef2147007fcf11bb1310e Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Thu, 9 Apr 2026 21:50:32 +0900 Subject: [PATCH] feat: add ArgoCD application configuration for portfolio --- argocd/apps/portfolio.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 argocd/apps/portfolio.yaml diff --git a/argocd/apps/portfolio.yaml b/argocd/apps/portfolio.yaml new file mode 100644 index 0000000..166e8ab --- /dev/null +++ b/argocd/apps/portfolio.yaml @@ -0,0 +1,23 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: portfolio + namespace: argocd +spec: + project: default + source: + repoURL: https://gitea.nik4nao.com/nik/homelab.git + targetRevision: main + path: manifests/portfolio + directory: + recurse: true + include: '*.yaml' + destination: + server: https://kubernetes.default.svc + namespace: portfolio + syncPolicy: + automated: + prune: false + selfHeal: true + syncOptions: + - CreateNamespace=true