From fba561cfc552ee7ec7c32dec87c2eb0d65b65870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=83=A1=E7=8E=AE=E6=96=87?= Date: Mon, 13 Jan 2025 19:49:59 +0800 Subject: [PATCH] deploy: increase the limit of init container Increase the limit to be equal to the csi-plugin container. Making the limit of init container smaller than main container does not have any benefits. --- deploy/chart/templates/plugin.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/chart/templates/plugin.yaml b/deploy/chart/templates/plugin.yaml index 4b15b37fc..cd49bcf7e 100644 --- a/deploy/chart/templates/plugin.yaml +++ b/deploy/chart/templates/plugin.yaml @@ -59,8 +59,8 @@ spec: cpu: 100m memory: 128Mi limits: - cpu: 200m - memory: 256Mi + cpu: 500m + memory: 1Gi volumeMounts: - name: etc mountPath: /host/etc