1a728428cf
Apply the platform-domain decision (2026-05-18) to every manifest, overlay, DNS template, README, and script in this repo. 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}"
|