From 2d15cb4fdfe0787cf545b50faa8ab9ad727c8234 Mon Sep 17 00:00:00 2001 From: Stephen Taylor Date: Fri, 26 Jan 2024 13:09:15 -0700 Subject: [PATCH] [ceph-rook] Update Rook and increase ceph-mon memory limit This change updates Rook to the 1.13.3 release. It also increases the memory limit for ceph-mon pods deployed by Rook to prevent pod restarts due to liveness probe failures that sometimes result from probes causing ceph-mon pods to hit their memory limit. Change-Id: Ib7d28fd866a51cbc5ad0d7320ae2ef4a831276aa --- tools/deployment/ceph/ceph-rook.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/deployment/ceph/ceph-rook.sh b/tools/deployment/ceph/ceph-rook.sh index 868a6258a..18a92051e 100755 --- a/tools/deployment/ceph/ceph-rook.sh +++ b/tools/deployment/ceph/ceph-rook.sh @@ -15,7 +15,7 @@ set -xe # Specify the Rook release tag to use for the Rook operator here -ROOK_RELEASE=v1.12.4 +ROOK_RELEASE=v1.13.3 : ${CEPH_OSD_DATA_DEVICE:="/dev/loop100"} @@ -444,10 +444,10 @@ cephClusterSpec: mon: limits: cpu: "250m" - memory: "100Mi" + memory: "256Mi" requests: cpu: "250m" - memory: "50Mi" + memory: "128Mi" osd: limits: cpu: "500m"