From 8c4e1c0e2dca70ce9394209329d0087d076fcb03 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sun, 18 Jun 2017 01:21:39 -0500 Subject: [PATCH] Fix cpu and memory limits for glance 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: I597889dd9e19ae672926b772d7ae38947ede26bc --- glance/values.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/glance/values.yaml b/glance/values.yaml index cfaacbe12b..891a4f3cf5 100644 --- a/glance/values.yaml +++ b/glance/values.yaml @@ -181,51 +181,51 @@ resources: enabled: false api: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" registry: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" jobs: db: 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" post: limits: - memory: "128Mi" - cpu: "500m" + memory: "1024Mi" + cpu: "2000m" requests: memory: "128Mi" cpu: "500m" bootstrap: 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"