mirror of
https://github.com/katanemo/plano.git
synced 2026-06-29 15:49:40 +02:00
remove debug hacks
This commit is contained in:
parent
739c52b91c
commit
eaf90be387
2 changed files with 1 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue