From 945939aa8d1f247af4131fb8e57c29f1ff790105 Mon Sep 17 00:00:00 2001 From: anirudhwarrier <12178754+anirudhwarrier@users.noreply.github.com> Date: Sun, 17 Dec 2023 18:50:17 +0400 Subject: [PATCH] increase DB specs --- .../load/automationv2_1/automationv2_1_test.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/integration-tests/load/automationv2_1/automationv2_1_test.go b/integration-tests/load/automationv2_1/automationv2_1_test.go index 97b74f71c88..4abad74a80c 100644 --- a/integration-tests/load/automationv2_1/automationv2_1_test.go +++ b/integration-tests/load/automationv2_1/automationv2_1_test.go @@ -77,12 +77,12 @@ ListenAddresses = ["0.0.0.0:6690"]` minimumDbSpec = map[string]interface{}{ "resources": map[string]interface{}{ "requests": map[string]interface{}{ - "cpu": "1000m", - "memory": "1Gi", + "cpu": "2000m", + "memory": "4Gi", }, "limits": map[string]interface{}{ - "cpu": "1000m", - "memory": "1Gi", + "cpu": "2000m", + "memory": "4Gi", }, }, "stateful": true, @@ -105,12 +105,12 @@ ListenAddresses = ["0.0.0.0:6690"]` recDbSpec = map[string]interface{}{ "resources": map[string]interface{}{ "requests": map[string]interface{}{ - "cpu": "2000m", - "memory": "2Gi", + "cpu": "4000m", + "memory": "8Gi", }, "limits": map[string]interface{}{ - "cpu": "2000m", - "memory": "2Gi", + "cpu": "4000m", + "memory": "8Gi", }, }, "stateful": true,