From 2e67eeb9559ab8532c3a6fc6c767952b6cbdf9d0 Mon Sep 17 00:00:00 2001 From: Matthew Heler Date: Fri, 7 Dec 2018 20:13:20 -0600 Subject: [PATCH] Increase the cpu and memory resource limits for Ceph OSDs The minimium requirements for a Ceph OSD have changed in the latest Luminous release to accomodate Bluestore changes. We need to support these changes as we look into upgrading Ceph to the latest Luminous and beyond releases. Change-Id: I3eddffe73cfd188ff012db7c74702de6921711e7 --- ceph-osd/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ceph-osd/values.yaml b/ceph-osd/values.yaml index 0cd1440f23..04df11ea3c 100644 --- a/ceph-osd/values.yaml +++ b/ceph-osd/values.yaml @@ -51,11 +51,11 @@ pod: enabled: false osd: requests: - memory: "512Mi" - cpu: "500m" - limits: - memory: "1024Mi" + memory: "2Gi" cpu: "1000m" + limits: + memory: "5Gi" + cpu: "2000m" tests: requests: memory: "10Mi"