From dca5cffa556ea61aab7ee1b135406fc08000c433 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Fri, 4 Jul 2025 11:03:26 +0800 Subject: [PATCH] fix(flink): update resource requests and limits for jobmanager and taskmanager - Adjusted CPU and memory requests and limits for both jobmanager and taskmanager to optimize resource allocation. - Commented out the resourcesPreset parameter for clarity in configuration. Signed-off-by: zhenyus --- .../freeleaps-data-platform/flink/values.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cluster/manifests/freeleaps-data-platform/flink/values.yaml b/cluster/manifests/freeleaps-data-platform/flink/values.yaml index fc317636..ded765f7 100644 --- a/cluster/manifests/freeleaps-data-platform/flink/values.yaml +++ b/cluster/manifests/freeleaps-data-platform/flink/values.yaml @@ -206,7 +206,7 @@ jobmanager: ## @param jobmanager.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if jobmanager.resources is set (jobmanager.resources is recommended for production). ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 ## - resourcesPreset: "small" + # resourcesPreset: "small" ## @param jobmanager.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) ## Example: ## resources: @@ -219,10 +219,10 @@ jobmanager: ## resources: requests: - cpu: 200Mi - memory: 1Gi + cpu: 100m + memory: 128Mi limits: - cpu: 500Mi + cpu: 200m memory: 2Gi ## @param jobmanager.extraVolumeMounts Optionally specify extra list of additional volumeMounts for flink container ## @@ -603,7 +603,7 @@ taskmanager: ## @param taskmanager.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if taskmanager.resources is set (taskmanager.resources is recommended for production). ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 ## - resourcesPreset: "small" + # resourcesPreset: "small" ## @param taskmanager.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) ## Example: ## resources: @@ -616,10 +616,10 @@ taskmanager: ## resources: requests: - cpu: 200Mi - memory: 1Gi + cpu: 100m + memory: 128Mi limits: - cpu: 500Mi + cpu: 200m memory: 2Gi ## @param taskmanager.extraVolumeMounts Optionally specify extra list of additional volumeMounts for flink container ##