From d490ea60b5ee5cf5ef49d57b60d5cad34be136cd Mon Sep 17 00:00:00 2001 From: Karel Suta Date: Wed, 14 Aug 2024 10:18:37 +0200 Subject: [PATCH] PATCH: Raise head pod memory limit to avoid test instability --- ray-operator/test/e2e/support.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ray-operator/test/e2e/support.go b/ray-operator/test/e2e/support.go index 0c5ec8bf9e..55d76d7568 100644 --- a/ray-operator/test/e2e/support.go +++ b/ray-operator/test/e2e/support.go @@ -140,7 +140,7 @@ func headPodTemplateApplyConfiguration() *corev1ac.PodTemplateSpecApplyConfigura }). WithLimits(corev1.ResourceList{ corev1.ResourceCPU: resource.MustParse("500m"), - corev1.ResourceMemory: resource.MustParse("2G"), + corev1.ResourceMemory: resource.MustParse("3G"), })))) }