From be4e62223091c3ad7017262397966b87276f33f1 Mon Sep 17 00:00:00 2001 From: James Gorrie Date: Fri, 1 Sep 2023 11:29:53 +0100 Subject: [PATCH 1/2] fix: bump minCapacity from 15 => 30 --- dotcom-rendering/cdk/bin/cdk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotcom-rendering/cdk/bin/cdk.ts b/dotcom-rendering/cdk/bin/cdk.ts index 8cc0f66cdde..cd8fa76f8b4 100644 --- a/dotcom-rendering/cdk/bin/cdk.ts +++ b/dotcom-rendering/cdk/bin/cdk.ts @@ -14,7 +14,7 @@ const sharedProps = { new DotcomRendering(app, 'DotcomRendering-PROD', { ...sharedProps, stage: 'PROD', - minCapacity: 15, + minCapacity: 30, maxCapacity: 60, instanceType: 't4g.small', }); From a847e5aa72b36e6dd32ec20449bc1757bdd0fe61 Mon Sep 17 00:00:00 2001 From: James Gorrie Date: Fri, 1 Sep 2023 11:44:26 +0100 Subject: [PATCH 2/2] fix: bump maxCapacity from 60 => 120 --- dotcom-rendering/cdk/bin/cdk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotcom-rendering/cdk/bin/cdk.ts b/dotcom-rendering/cdk/bin/cdk.ts index cd8fa76f8b4..f900daa1852 100644 --- a/dotcom-rendering/cdk/bin/cdk.ts +++ b/dotcom-rendering/cdk/bin/cdk.ts @@ -15,7 +15,7 @@ new DotcomRendering(app, 'DotcomRendering-PROD', { ...sharedProps, stage: 'PROD', minCapacity: 30, - maxCapacity: 60, + maxCapacity: 120, instanceType: 't4g.small', });