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.
24 lines
515 B
TOML
24 lines
515 B
TOML
# minio stub — full config lands in M7.x.
|
|
# Host: vm-app-prod. Resource budget per INFRASTRUCTURE.md §6 co-tenant notes.
|
|
|
|
[[service]]
|
|
name = "minio"
|
|
image = "minio/minio:latest"
|
|
port = 9000
|
|
extra_ports = ["9001:9001"]
|
|
cmd = ["server", "/data", "--console-address", ":9001"]
|
|
|
|
[service.placement]
|
|
node = "vm-app-prod"
|
|
|
|
[service.resources]
|
|
memory = "1Gi"
|
|
cpu = 0.5
|
|
|
|
[service.volume]
|
|
path = "/data"
|
|
|
|
[service.env]
|
|
MINIO_ROOT_USER = "${secrets.MINIO_ROOT_USER}"
|
|
MINIO_ROOT_PASSWORD = "${secrets.MINIO_ROOT_PASSWORD}"
|