Skip to content
Closed
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
28 changes: 14 additions & 14 deletions services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
api-server:
image: ${DOCKER_REGISTRY:-itisfoundation}/api-server:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "api-{{.Node.Hostname}}-{{.Task.Slot}}"
environment:
<<: *tracing_open_telemetry_environs
API_SERVER_DEV_FEATURES_ENABLED: ${API_SERVER_DEV_FEATURES_ENABLED}
Expand Down Expand Up @@ -81,7 +81,7 @@ services:
autoscaling:
image: ${DOCKER_REGISTRY:-itisfoundation}/autoscaling:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "as-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- autoscaling_subnet
environment:
Expand Down Expand Up @@ -193,7 +193,7 @@ services:
clusters-keeper:
image: ${DOCKER_REGISTRY:-itisfoundation}/clusters-keeper:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "ck-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- default
environment:
Expand Down Expand Up @@ -261,7 +261,7 @@ services:
director:
image: ${DOCKER_REGISTRY:-itisfoundation}/director:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "dv0-{{.Node.Hostname}}-{{.Task.Slot}}"
environment:
<<: *tracing_open_telemetry_environs
DIRECTOR_DEFAULT_MAX_MEMORY: ${DIRECTOR_DEFAULT_MAX_MEMORY}
Expand Down Expand Up @@ -308,7 +308,7 @@ services:
director-v2:
image: ${DOCKER_REGISTRY:-itisfoundation}/director-v2:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "dv2-{{.Node.Hostname}}-{{.Task.Slot}}"
environment:
<<: *tracing_open_telemetry_environs
AWS_S3_CLI_S3: ${AWS_S3_CLI_S3}
Expand Down Expand Up @@ -418,7 +418,7 @@ services:
efs-guardian:
image: ${DOCKER_REGISTRY:-itisfoundation}/efs-guardian:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "efs-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- default
environment:
Expand Down Expand Up @@ -521,7 +521,7 @@ services:
resource-usage-tracker:
image: ${DOCKER_REGISTRY:-itisfoundation}/resource-usage-tracker:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "rut-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- default
environment:
Expand Down Expand Up @@ -560,7 +560,7 @@ services:
dynamic-schdlr:
image: ${DOCKER_REGISTRY:-itisfoundation}/dynamic-scheduler:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "ds-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- default
- docker-api-network
Expand Down Expand Up @@ -627,7 +627,7 @@ services:
static-webserver:
image: ${DOCKER_REGISTRY:-itisfoundation}/static-webserver:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "sw-{{.Node.Hostname}}-{{.Task.Slot}}"
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8000
Expand Down Expand Up @@ -1191,7 +1191,7 @@ services:
agent:
image: ${DOCKER_REGISTRY:-itisfoundation}/agent:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "age-{{.Node.Hostname}}-{{.Task.Slot}}"
deploy:
mode: global
resources:
Expand Down Expand Up @@ -1224,7 +1224,7 @@ services:
notifications:
image: ${DOCKER_REGISTRY:-itisfoundation}/notifications:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "not-{{.Node.Hostname}}-{{.Task.Slot}}"

environment:
LOG_FILTER_MAPPING: ${LOG_FILTER_MAPPING}
Expand All @@ -1251,7 +1251,7 @@ services:
dask-sidecar:
image: ${DOCKER_REGISTRY:-itisfoundation}/dask-sidecar:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "dsid-{{.Node.Hostname}}-{{.Task.Slot}}"
deploy:
mode: global
endpoint_mode: dnsrr
Expand Down Expand Up @@ -1284,7 +1284,7 @@ services:
dask-scheduler:
image: ${DOCKER_REGISTRY:-itisfoundation}/dask-sidecar:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "dask-{{.Node.Hostname}}-{{.Task.Slot}}"
environment:
<<: *sidecar-environment
DASK_START_AS_SCHEDULER: 1
Expand All @@ -1296,7 +1296,7 @@ services:
datcore-adapter:
image: ${DOCKER_REGISTRY:-itisfoundation}/datcore-adapter:${DOCKER_IMAGE_TAG:-latest}
init: true
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
hostname: "dat-{{.Node.Hostname}}-{{.Task.Slot}}"
networks:
- storage_subnet
environment:
Expand Down
Loading