Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛Director-V0: Legacy services expect Postgres Endpoint as host:port #6811

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ async def _create_docker_service_params(
service_name = registry_proxy.get_service_last_names(service_key) + "_" + node_uuid
_logger.debug("Converting labels to docker runtime parameters")
service_default_envs = {
"POSTGRES_ENDPOINT": app_settings.DIRECTOR_POSTGRES.dsn,
# old services expect POSTGRES_ENDPOINT as hostname:port
"POSTGRES_ENDPOINT": f"{app_settings.DIRECTOR_POSTGRES.POSTGRES_HOST}:{app_settings.DIRECTOR_POSTGRES.POSTGRES_PORT}",
"POSTGRES_USER": app_settings.DIRECTOR_POSTGRES.POSTGRES_USER,
"POSTGRES_PASSWORD": app_settings.DIRECTOR_POSTGRES.POSTGRES_PASSWORD.get_secret_value(),
"POSTGRES_DB": app_settings.DIRECTOR_POSTGRES.POSTGRES_DB,
Expand Down
Loading