From f4840b07ae51d0bc6cc5f0f71c0d59f78bb08f8a Mon Sep 17 00:00:00 2001 From: David Xia Date: Wed, 29 Apr 2026 16:01:32 -0400 Subject: [PATCH] Show how to not set CPU limits in full-example.yaml Signed-off-by: David Xia --- examples/full-example.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/full-example.yaml b/examples/full-example.yaml index be51bfd..e5320c4 100644 --- a/examples/full-example.yaml +++ b/examples/full-example.yaml @@ -71,14 +71,15 @@ image: # Set replicas for HA replicas: 3 -# Configure resource limits (Guaranteed QoS: requests = limits) +# Configure resource limits # Following 1GB:1CPU ratio (1000m CPU = 1Gi memory) +# No CPU limits are set so the container can use idle CPU on the host. +noCpuLimits: true resources: requests: cpu: 500m memory: 512Mi limits: - cpu: 500m memory: 512Mi # Enable PodDisruptionBudget