It looks like there is 1GB limit set up somewhere ...
# flyte-deployment
p
It looks like there is 1GB limit set up somewhere in Flyte configuration. I'm using
flyte-binary
, could you help me to rise this limit? In my task I want to use such decorator:
@task(limits=Resources(mem='3Gi'), requests=Resources(mem='2Gi'))
I've found this config in
values.yaml
:
Copy code
flyte-binary:
  deployment:
  # resources Resource limits and requests for Flyte container
  # Uncomment and update to specify resources for deployment
   resources:
     limits:
       memory: 3Gi
     requests:
       cpu: 5
but it doesn't work. It probably just increases flyte deployment limits.