remove debug hacks

This commit is contained in:
Adil Hafeez 2025-05-22 23:06:22 -07:00
parent 739c52b91c
commit eaf90be387
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
2 changed files with 1 additions and 4 deletions

View file

@ -728,7 +728,7 @@ static_resources:
- endpoint: - endpoint:
address: address:
socket_address: socket_address:
address: host.docker.internal address: 0.0.0.0
port_value: 9091 port_value: 9091
hostname: localhost hostname: localhost

View file

@ -52,15 +52,12 @@ def docker_start_archgw_detached(
port_mappings = [ port_mappings = [
f"{prompt_gateway_port}:{prompt_gateway_port}", f"{prompt_gateway_port}:{prompt_gateway_port}",
f"{llm_gateway_port}:{llm_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", "9901:19901",
] ]
port_mappings_args = [item for port in port_mappings for item in ("-p", port)] port_mappings_args = [item for port in port_mappings for item in ("-p", port)]
volume_mappings = [ volume_mappings = [
f"{arch_config_file}:/app/arch_config.yaml:ro", 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 = [ volume_mappings_args = [
item for volume in volume_mappings for item in ("-v", volume) item for volume in volume_mappings for item in ("-v", volume)