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
This commit is contained in:
Tin Lam 2017-06-18 01:21:39 -05:00
parent 5a93f0f596
commit 8c4e1c0e2d

View File

@ -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"