Files
argocd-apps/apps/base/artifactapi/kustomization.yaml
T
unkinben 588b4a5f78 feat: add artifactapi3 application
Deploy artifactapi v3 with separate API and UI deployments, CNPG
PostgreSQL cluster with pooler, and Redis.
2026-06-23 22:52:52 +10:00

44 lines
997 B
YAML

---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- artifactapi-deployment.yaml
- artifactapi-hpa.yaml
- httproute.yaml
- postgres-deployment.yaml
- redis-deployment.yaml
- pvc.yaml
# shared
- configmap.yaml
- services.yaml
- gateway.yaml
- namespace.yaml
- vaultauth.yaml
- vaultstaticsecret.yaml
# new
- api-deployment.yaml
- api-hpa.yaml
- cnpg_cluster.yaml
- cnpg_pooler.yaml
- ui-deployment.yaml
- ui-hpa.yaml
# to copy still
# - httproute.yaml
# - redis-deployment.yaml
configMapGenerator:
- name: remotes-config
files:
- resources/conf.d/config.yaml
- resources/conf.d/local-generic.yaml
- resources/conf.d/remote-generic.yaml
- resources/conf.d/remote-alpine.yaml
- resources/conf.d/remote-rpm.yaml
- resources/conf.d/remote-docker.yaml
- resources/conf.d/remote-helm.yaml
- resources/conf.d/virtual-helm.yaml
options:
disableNameSuffixHash: true