Skip to content

Commit 216962c

Browse files
committed
Shorten traefik config placeholder svc name
The name is service name is too long and causes >64 len char issue when deploying in prod. This fixes the problem by using a short name Related PR/s * original introduction of this servicehttps://github.com/ITISFoundation/pull/7899 * corresponding ops changes ITISFoundation/osparc-ops-environments#1177
1 parent ba45277 commit 216962c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/pytest-simcore/src/pytest_simcore/simcore_services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"whoami",
4141
"sto-worker",
4242
"sto-worker-cpu-bound",
43-
"traefik-configuration-placeholder",
43+
"traefik-config-placeholder",
4444
}
4545
# TODO: unify healthcheck policies see https://github.com/ITISFoundation/osparc-simcore/pull/2281
4646
DEFAULT_SERVICE_HEALTHCHECK_ENTRYPOINT: Final[str] = "/v0/"

services/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ services:
15301530
#
15311531
# use fallback routes to return proper 503 (instead of 404)
15321532
# this service must be running at all times
1533-
traefik-configuration-placeholder:
1533+
traefik-config-placeholder:
15341534
image: busybox:1.35.0
15351535
command: sleep infinity
15361536
networks:

0 commit comments

Comments
 (0)