From eaf90be38702db883ca196a1f52849df6906fc11 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 22 May 2025 23:06:22 -0700 Subject: [PATCH] remove debug hacks --- arch/envoy.template.yaml | 2 +- arch/tools/cli/docker_cli.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/envoy.template.yaml b/arch/envoy.template.yaml index 962f43dd..c1373335 100644 --- a/arch/envoy.template.yaml +++ b/arch/envoy.template.yaml @@ -728,7 +728,7 @@ static_resources: - endpoint: address: socket_address: - address: host.docker.internal + address: 0.0.0.0 port_value: 9091 hostname: localhost diff --git a/arch/tools/cli/docker_cli.py b/arch/tools/cli/docker_cli.py index 4d77e988..8cbf47a6 100644 --- a/arch/tools/cli/docker_cli.py +++ b/arch/tools/cli/docker_cli.py @@ -52,15 +52,12 @@ def docker_start_archgw_detached( port_mappings = [ f"{prompt_gateway_port}:{prompt_gateway_port}", f"{llm_gateway_port}:{llm_gateway_port}", - # expose llm gateway as well without tracing support - f"{llm_gateway_port + 1}:{llm_gateway_port + 1}", "9901:19901", ] port_mappings_args = [item for port in port_mappings for item in ("-p", port)] volume_mappings = [ f"{arch_config_file}:/app/arch_config.yaml:ro", - # "/Users/adilhafeez/src/intelligent-prompt-gateway/crates/target/wasm32-wasip1/release:/etc/envoy/proxy-wasm-plugins:ro", ] volume_mappings_args = [ item for volume in volume_mappings for item in ("-v", volume)