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 <zhenyus@mathmast.com>
This commit is contained in:
parent
ff26a2cec6
commit
dca5cffa55
@ -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
|
||||
##
|
||||
|
||||
Loading…
Reference in New Issue
Block a user