From ba32668192eba2994bcc4a11f6d0c18bbfca8bb2 Mon Sep 17 00:00:00 2001 From: BLasan Date: Mon, 25 Jan 2021 02:49:11 +0530 Subject: [PATCH] Add resource requests & limits for mysql test --- test/integration/testdata/mysql.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/integration/testdata/mysql.yaml b/test/integration/testdata/mysql.yaml index fd90187228..986430cc76 100644 --- a/test/integration/testdata/mysql.yaml +++ b/test/integration/testdata/mysql.yaml @@ -24,8 +24,15 @@ spec: app: mysql spec: containers: - - image: mysql:5.6 + - image: mysql:5.7 name: mysql + resources: + requests: + memory: "512Mi" + cpu: "600m" + limits: + memory: "700Mi" + cpu: "700m" env: # Use secret in real usage - name: MYSQL_ROOT_PASSWORD