From 2dcbf2729e4815056166eb3d3fea9cd6c3f2acc1 Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Wed, 14 Aug 2024 15:35:02 -0400 Subject: [PATCH] Adjust staging and demo worker instance settings This changeset adds a bit more memory to the staging worker instance, and it bumps the number of worker instances to 2 in staging and demo. Signed-off-by: Carlo Costino --- deploy-config/demo.yml | 2 +- deploy-config/staging.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy-config/demo.yml b/deploy-config/demo.yml index 38e238c30..600ea55b4 100644 --- a/deploy-config/demo.yml +++ b/deploy-config/demo.yml @@ -1,7 +1,7 @@ env: demo web_instances: 2 web_memory: 1G -worker_instances: 1 +worker_instances: 2 worker_memory: 512M scheduler_memory: 256M public_api_route: notify-api-demo.app.cloud.gov diff --git a/deploy-config/staging.yml b/deploy-config/staging.yml index c338e7bb1..34ae91c3c 100644 --- a/deploy-config/staging.yml +++ b/deploy-config/staging.yml @@ -1,8 +1,8 @@ env: staging web_instances: 2 web_memory: 1G -worker_instances: 1 -worker_memory: 512M +worker_instances: 2 +worker_memory: 1G scheduler_memory: 256M public_api_route: notify-api-staging.app.cloud.gov admin_base_url: https://notify-staging.app.cloud.gov