cilium: honor resource limits and requests by default (#13092)

Signed-off-by: Shaleen Bathla <shaleen.bathla@servicenow.com>
This commit is contained in:
Shaleen Bathla
2026-03-16 08:49:40 +05:30
committed by GitHub
parent a51773e78f
commit 7acdc4df64

View File

@@ -143,6 +143,14 @@ cgroup:
enabled: {{ cilium_cgroup_auto_mount | to_json }} enabled: {{ cilium_cgroup_auto_mount | to_json }}
hostRoot: {{ cilium_cgroup_host_root }} hostRoot: {{ cilium_cgroup_host_root }}
resources:
limits:
memory: "{{ cilium_memory_limit }}"
cpu: "{{ cilium_cpu_limit }}"
requests:
memory: "{{ cilium_memory_requests }}"
cpu: "{{ cilium_cpu_requests }}"
operator: operator:
image: image:
repository: {{ cilium_operator_image_repo }} repository: {{ cilium_operator_image_repo }}