Commit ac942e3e authored by Rémy Coutable's avatar Rémy Coutable

Merge branch '34102-reduce-container-cpu-request' into 'master'

Reduce cpu request for pods according to their utilization

See merge request gitlab-org/gitlab!18712
parents 11286336 74fea0a0
...@@ -62,10 +62,10 @@ gitlab: ...@@ -62,10 +62,10 @@ gitlab:
unicorn: unicorn:
resources: resources:
requests: requests:
cpu: 600m cpu: 400m
memory: 1.4G memory: 1.4G
limits: limits:
cpu: 1.2G cpu: 800m
memory: 2.8G memory: 2.8G
deployment: deployment:
readinessProbe: readinessProbe:
...@@ -95,10 +95,10 @@ gitlab-runner: ...@@ -95,10 +95,10 @@ gitlab-runner:
minio: minio:
resources: resources:
requests: requests:
cpu: 100m cpu: 5m
memory: 128M memory: 128M
limits: limits:
cpu: 200m cpu: 10m
memory: 280M memory: 280M
nginx-ingress: nginx-ingress:
controller: controller:
...@@ -107,10 +107,10 @@ nginx-ingress: ...@@ -107,10 +107,10 @@ nginx-ingress:
replicaCount: 2 replicaCount: 2
resources: resources:
requests: requests:
cpu: 150m cpu: 100m
memory: 250M memory: 250M
limits: limits:
cpu: 300m cpu: 200m
memory: 500M memory: 500M
minAvailable: 1 minAvailable: 1
service: service:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment