mirror of
https://github.com/katanemo/plano.git
synced 2026-06-29 15:49:40 +02:00
fix path
This commit is contained in:
parent
9e2fd2ee58
commit
ab88af2eca
3 changed files with 6 additions and 6 deletions
|
|
@ -8,11 +8,11 @@ services:
|
||||||
- "12000:12000"
|
- "12000:12000"
|
||||||
- "19901:9901"
|
- "19901:9901"
|
||||||
volumes:
|
volumes:
|
||||||
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/config/arch_config.yaml
|
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/app/arch_config.yaml
|
||||||
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
||||||
- ./envoy.template.yaml:/config/envoy.template.yaml
|
- ./envoy.template.yaml:/app/envoy.template.yaml
|
||||||
- ./arch_config_schema.yaml:/config/arch_config_schema.yaml
|
- ./arch_config_schema.yaml:/app/arch_config_schema.yaml
|
||||||
- ./tools/cli/config_generator.py:/config/config_generator.py
|
- ./tools/cli/config_generator.py:/app/config_generator.py
|
||||||
- ../crates/target/wasm32-wasip1/release/llm_gateway.wasm:/etc/envoy/proxy-wasm-plugins/llm_gateway.wasm
|
- ../crates/target/wasm32-wasip1/release/llm_gateway.wasm:/etc/envoy/proxy-wasm-plugins/llm_gateway.wasm
|
||||||
- ../crates/target/wasm32-wasip1/release/prompt_gateway.wasm:/etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm
|
- ../crates/target/wasm32-wasip1/release/prompt_gateway.wasm:/etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm
|
||||||
- ~/archgw_logs:/var/log/
|
- ~/archgw_logs:/var/log/
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ services:
|
||||||
- "12000:12000"
|
- "12000:12000"
|
||||||
- "19901:9901"
|
- "19901:9901"
|
||||||
volumes:
|
volumes:
|
||||||
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/config/arch_config.yaml
|
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/app/arch_config.yaml
|
||||||
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
||||||
- ~/archgw_logs:/var/log/
|
- ~/archgw_logs:/var/log/
|
||||||
env_file:
|
env_file:
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ from jsonschema import validate
|
||||||
ENVOY_CONFIG_TEMPLATE_FILE = os.getenv(
|
ENVOY_CONFIG_TEMPLATE_FILE = os.getenv(
|
||||||
"ENVOY_CONFIG_TEMPLATE_FILE", "envoy.template.yaml"
|
"ENVOY_CONFIG_TEMPLATE_FILE", "envoy.template.yaml"
|
||||||
)
|
)
|
||||||
ARCH_CONFIG_FILE = os.getenv("ARCH_CONFIG_FILE", "/config/arch_config.yaml")
|
ARCH_CONFIG_FILE = os.getenv("ARCH_CONFIG_FILE", "/app/arch_config.yaml")
|
||||||
ENVOY_CONFIG_FILE_RENDERED = os.getenv(
|
ENVOY_CONFIG_FILE_RENDERED = os.getenv(
|
||||||
"ENVOY_CONFIG_FILE_RENDERED", "/etc/envoy/envoy.yaml"
|
"ENVOY_CONFIG_FILE_RENDERED", "/etc/envoy/envoy.yaml"
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue