From 9c2fa21844276fec8af5d5899334f2ba9ef76a36 Mon Sep 17 00:00:00 2001 From: Johannes Scheerer Date: Tue, 29 Mar 2022 13:19:17 +0200 Subject: [PATCH] Add memory requests and limits to cilium agent container. We want to limit the memory consumption of cilium agent in case of bugs. The way we set the limits we also have to specify the requests. Otherwise, the requests will be equal to the limits, which would be wasteful. --- charts/internal/cilium/charts/agent/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/internal/cilium/charts/agent/values.yaml b/charts/internal/cilium/charts/agent/values.yaml index 5488feb02..2f03b2152 100644 --- a/charts/internal/cilium/charts/agent/values.yaml +++ b/charts/internal/cilium/charts/agent/values.yaml @@ -10,7 +10,11 @@ monitor: resources: {} # Specifies the resources for the agent container -resources: {} +resources: + requests: + memory: 200Mi + limits: + memory: 1Gi # Specifies the resources for the clean-cilium-state init container initResources: