From 0fb670d24ead3d445b257f7222fad85616334c28 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Tue, 12 May 2026 23:49:10 -0400 Subject: [PATCH] feat: Add CuraFlow HMS to GitOps stack --- platform/bootstrap/apps/app-curaflow.yaml | 20 ++++++++++++++++++++ platform/bootstrap/apps/kustomization.yaml | 1 + 2 files changed, 21 insertions(+) create mode 100644 platform/bootstrap/apps/app-curaflow.yaml diff --git a/platform/bootstrap/apps/app-curaflow.yaml b/platform/bootstrap/apps/app-curaflow.yaml new file mode 100644 index 0000000..3ba834b --- /dev/null +++ b/platform/bootstrap/apps/app-curaflow.yaml @@ -0,0 +1,20 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: curaflow + namespace: argocd +spec: + project: default + source: + repoURL: https://git.applaude.net/deepkoluguri/curaflow-hms.git + targetRevision: HEAD + path: k8s + destination: + server: https://kubernetes.default.svc + namespace: curaflow + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/platform/bootstrap/apps/kustomization.yaml b/platform/bootstrap/apps/kustomization.yaml index bd99c3f..ab5eb2b 100644 --- a/platform/bootstrap/apps/kustomization.yaml +++ b/platform/bootstrap/apps/kustomization.yaml @@ -15,3 +15,4 @@ resources: - app-agents-runtime.yaml - app-interface.yaml - app-ai-agents.yaml + - app-curaflow.yaml