8e37f65b8e
Lands manifests/, overlays/, dns/, scripts/, Makefile per M1.1. Bundles yourplatform.com→breakpilot.com rename. vms/ removed (out-of-scope for Orca). Refs: M1.1
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}"
|