https://flyte.org logo
#ask-the-community
Title
# ask-the-community
r

Roberto Ruiz

06/01/2022, 7:58 PM
Hi. I'm getting OOMKilled when running the diabetes demo on Kubernetes. Describing the pod I see
Copy code
Limits:
      cpu:     1
      memory:  200Mi
    Requests:
      cpu:     1
      memory:  200Mi
How can I increase this? My helm yaml already has
Copy code
task_resource_defaults:
    task_resources:
      defaults:
        cpu: 1000m
        memory: 1000Mi
        storage: 1000Mi
      limits:
        storage: 2000Mi
k

katrina

06/01/2022, 8:34 PM
are you setting task resources in the
@task
decorator?
r

Roberto Ruiz

06/01/2022, 8:35 PM
no, I'm just running the example as is
ah nevermind, the example does have the limit
thanks
k

katrina

06/01/2022, 8:49 PM
were you able to get things working?
r

Roberto Ruiz

06/01/2022, 9:07 PM
yeah, I increased all of them to 2000Mi and it worked fine
k

katrina

06/01/2022, 9:08 PM
great!
83 Views