Hi. I'm getting OOMKilled when running the diabete...
# ask-the-community
r
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
are you setting task resources in the
@task
decorator?
r
no, I'm just running the example as is
ah nevermind, the example does have the limit
thanks
k
were you able to get things working?
r
yeah, I increased all of them to 2000Mi and it worked fine
k
great!
287 Views