From 9b6e57aa6b9d8fb0e1b72d6a893965361e2b07ba Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sun, 18 Jun 2017 01:14:54 -0500 Subject: [PATCH] Fix cpu and memory limits for keystone Currently, the memory and cpu limits are identical to the requests. This patch set ups the limits to be similar to other services such as nova and neutron. Change-Id: I16985e622bdca95d88585d2f1e5bbb09e7dc766b --- keystone/values.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/keystone/values.yaml b/keystone/values.yaml index dfe652f2b4..11afa5a519 100644 --- a/keystone/values.yaml +++ b/keystone/values.yaml @@ -101,37 +101,37 @@ resources: enabled: false api: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" jobs: bootstrap: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" db_sync: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" init: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" tests: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m"