From 5a723fb12815331d2f065e101e82b94b9b8f2af5 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 20 Nov 2023 17:34:53 +0100 Subject: [PATCH] fix(dns): Increase CPU limits This patch increases CPU requests and limits for the DNS resolver pods in order to improve response times. Currently the blocky process is throttled in 20-30% of time, which is not ideal. --- apps/k8s01/dns/dns.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/k8s01/dns/dns.yaml b/apps/k8s01/dns/dns.yaml index 45001becb..8db6fa1d1 100644 --- a/apps/k8s01/dns/dns.yaml +++ b/apps/k8s01/dns/dns.yaml @@ -86,10 +86,10 @@ spec: periodSeconds: 5 resources: requests: - cpu: 100m + cpu: 200m memory: 256Mi limits: - cpu: 100m + cpu: 200m memory: 256Mi volumeMounts: - name: tls-secret -- GitLab