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

💄 Add: Make RUT replica configurable via envvar #864

4 changes: 1 addition & 3 deletions services/simcore/docker-compose.deploy.aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ services:
clusters-keeper:
deploy:
replicas: 1
resource-usage-tracker:
deploy:
replicas: 3

static-webserver:
hostname: "{{.Node.Hostname}}-{{.Service.Name}}"

Expand Down
4 changes: 1 addition & 3 deletions services/simcore/docker-compose.deploy.dalco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ services:
placement:
constraints:
- node.role == worker
resource-usage-tracker:
deploy:
replicas: 3

traefik:
command:
- "--api=true"
Expand Down
3 changes: 0 additions & 3 deletions services/simcore/docker-compose.deploy.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ services:
constraints:
- node.labels.postgres==true

resource-usage-tracker:
deploy:
replicas: 3
static-webserver:
hostname: "{{.Node.Hostname}}-{{.Service.Name}}"
traefik:
Expand Down
2 changes: 1 addition & 1 deletion services/simcore/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ services:
# NOTE: https://github.com/ITISFoundation/osparc-simcore/pull/4286
# NOTE: this MUSTN'T change, or weird things might happen
# this will stay until all legacy dynamic services are gone.
replicas: 1
replicas: ${RESOURCE_USAGE_TRACKER_REPLICAS}
update_config:
parallelism: 2
order: start-first
Expand Down
Loading