Hi again, I am using the helm chart for flyte-bina...
# flyte-support
t
Hi again, I am using the helm chart for flyte-binary v1.9.1 . Is there a way to configure the default cpu and memory requests when running flytekit ? The default seems to be:
Copy code
Requests:
      cpu:     2
      memory:  200Mi
But I don't see where I can change that across the board without annotating tasks. I also don't see any values in the helm values created (helm get values)
g
You can set it like this with the inline config
Copy code
configuration:
  inline:
    task_resources:
      defaults:
        cpu: "1"
        ephemeralStorage: "0"
        gpu: "0"
        memory: "2Gi"
        storage: "2Gi"
      limits:
        cpu: "20"
        ephemeralStorage: "64Gi"
        gpu: "8"
        memory: "64Gi"
        storage: "64Gi"
🔥 1
gratitude thank you 1
t
Thanks @gray-ocean-62145, I will try it shortly
👍🏽 1
👍 2
Thanks again @gray-ocean-62145, that worked perfectly 🙂
g
No problem 😄