feat: add compose configuration for dev and dev-corp test environments
This commit is contained in:
parent
bb367055aa
commit
89bd18ffa5
2 changed files with 60 additions and 1 deletions
|
|
@ -15,6 +15,33 @@ source:
|
|||
- git clean -fd
|
||||
dirty_policy: discard
|
||||
|
||||
compose:
|
||||
project_name: iop-dev-corp-agent
|
||||
network: iop-dev-corp-agent-net
|
||||
subnet: 10.89.2.0/24
|
||||
env_file: .env.dev-corp.example
|
||||
runtime_root: /Users/fe/agent-work/iop-dev-corp
|
||||
setup_status: documented_only_current_session_not_deployed
|
||||
services:
|
||||
- postgres
|
||||
- redis
|
||||
- control-plane
|
||||
- web
|
||||
- prometheus
|
||||
- grafana
|
||||
host_ports:
|
||||
web: 13002
|
||||
control_plane_http: 18002
|
||||
control_plane_client_ws: 19004
|
||||
control_plane_edge_wire: 19005
|
||||
edge_node_tcp_compose: 19006
|
||||
postgres: 15402
|
||||
redis: 16302
|
||||
edge_metrics: 19102
|
||||
control_plane_metrics: 19104
|
||||
prometheus: 19112
|
||||
grafana: 19122
|
||||
|
||||
edge:
|
||||
id: dev-corp-edge
|
||||
host: iop.ai.kr
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
test_env: dev
|
||||
profile: dev-runtime-provider-pool
|
||||
last_updated_at: "2026-07-12"
|
||||
last_updated_at: "2026-07-13"
|
||||
|
||||
source:
|
||||
remote_runner:
|
||||
|
|
@ -12,6 +12,38 @@ source:
|
|||
- git clean -fd
|
||||
dirty_policy: discard
|
||||
|
||||
compose:
|
||||
project_name: iop-dev-agent
|
||||
network: iop-dev-agent-net
|
||||
subnet: 10.89.1.0/24
|
||||
env_file: .env.dev.example
|
||||
runtime_root: /Users/toki/agent-work/iop-dev
|
||||
services:
|
||||
- postgres
|
||||
- redis
|
||||
- control-plane
|
||||
- web
|
||||
- prometheus
|
||||
- grafana
|
||||
host_ports:
|
||||
web: 13001
|
||||
control_plane_http: 18001
|
||||
control_plane_client_ws: 19001
|
||||
control_plane_edge_wire: 19002
|
||||
edge_node_tcp_compose: 19003
|
||||
postgres: 15401
|
||||
redis: 16301
|
||||
edge_metrics_native: 19101
|
||||
control_plane_metrics: 19103
|
||||
prometheus: 19111
|
||||
grafana: 19121
|
||||
observability:
|
||||
prometheus_config: configs/prometheus/prometheus.dev.yml
|
||||
control_plane_metrics_target: control-plane:9093
|
||||
edge_metrics_target: host.docker.internal:19101
|
||||
grafana_bind: 127.0.0.1
|
||||
prometheus_bind: 127.0.0.1
|
||||
|
||||
edge:
|
||||
id: edge-toki-labs-dev
|
||||
config_path: build/dev-runtime/edge.yaml
|
||||
|
|
|
|||
Loading…
Reference in a new issue