3 Orca clusters (breakpilot-edge / breakpilot-control / breakpilot-app), 1 plane each. Single-VM core with Keycloak co-tenant on vm-edge. App cluster gets prod + stage VMs. Manifests reorganized into clusters/<name>/services/; validator now enforces per-cluster node whitelist. Multi-VM rollout gated on legal entity.
26 lines
592 B
TOML
26 lines
592 B
TOML
# erpnext stub — full config lands in M8.1.
|
|
# Host: vm-control. Resource budget per INFRASTRUCTURE.md §6 co-tenant notes.
|
|
|
|
[[service]]
|
|
name = "erpnext"
|
|
image = "frappe/erpnext:v15"
|
|
port = 8000
|
|
domain = "erp.breakpilot.com"
|
|
depends_on = ["mariadb", "redis-erpnext"]
|
|
|
|
[service.placement]
|
|
node = "vm-control"
|
|
|
|
[service.resources]
|
|
memory = "6Gi"
|
|
cpu = 2.0
|
|
|
|
[service.volume]
|
|
path = "/home/frappe/frappe-bench/sites"
|
|
|
|
[service.env]
|
|
DB_HOST = "mariadb"
|
|
REDIS_QUEUE = "redis://redis-erpnext:6379/0"
|
|
REDIS_CACHE = "redis://redis-erpnext:6379/1"
|
|
ADMIN_PASSWORD = "${secrets.ERPNEXT_ADMIN_PASSWORD}"
|