Hi, question about resources. I’m getting this err...
# ask-the-community
a
Hi, question about resources. I’m getting this error:
details: Requested CPU limit [15] is greater than current limit set in the platform configuration [2]
. I used the
deploy-flyte
terraform files, and I’m not seeing where a cpu limit is set to “2”. Where do I go to change the platform configuration? I did try adding the
configuration.inline.task_resources
section, but that didn’t seem to change anything. Thanks Edit: I also tried editing
cluster_resource_manager
to no avail. I can’t seem to find it in the docs
f
@Andrew, This is the section in helm-charts:
Copy code
task_resource_defaults:
    # -- Task default resources parameters
    task_resources:
      defaults:
        cpu: 100m
        memory: 500Mi
        storage: 500Mi
      limits:
        cpu: 2
        memory: 1Gi
        storage: 20Gi
        gpu: 1
a
ah ok, I’ll give that a try