Skip to content

Commit 09a4a0b

Browse files
author
Andrei Neagu
committed
fixed specs generation
1 parent d84efbf commit 09a4a0b

File tree

1 file changed

+9
-0
lines changed
  • services/dynamic-scheduler/src/simcore_service_dynamic_scheduler

1 file changed

+9
-0
lines changed

services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/cli.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import os
33

44
import typer
5+
from servicelib.fastapi.docker import DockerApiProxysettings
56
from settings_library.rabbit import RabbitSettings
67
from settings_library.utils_cli import (
78
create_settings_command,
@@ -56,6 +57,14 @@ def echo_dotenv(ctx: typer.Context, *, minimal: bool = True):
5657
"DYNAMIC_SCHEDULER_UI_STORAGE_SECRET",
5758
"replace-with-ui-storage-secret",
5859
),
60+
DYNAMIC_SCHEDULER_DOCKER_API_PROXY=os.environ.get(
61+
"DYNAMIC_SCHEDULER_DOCKER_API_PROXY",
62+
DockerApiProxysettings.create_from_envs(
63+
DOCKER_API_PROXY_HOST=os.environ.get(
64+
"DOCKER_API_PROXY_HOST", "replace-with-proxy-host"
65+
)
66+
),
67+
),
5968
)
6069

6170
print_as_envfile(

0 commit comments

Comments
 (0)