25 lines
700 B
YAML
25 lines
700 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: medical-chatbot-dev
|
|
namespace: argocd
|
|
spec:
|
|
project: default # TODO: confirm the team's ArgoCD project/RBAC scope for this app
|
|
source:
|
|
repoURL: https://github.com/BaoVu2k4/vsf-duocthu.git # TODO: confirm once repo is created
|
|
targetRevision: main
|
|
path: infra/helm/medical-chatbot
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
- values-dev.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc # TODO: point at the team's target cluster/context
|
|
namespace: medical-chatbot-dev
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|