I have deployed airflow with helm stable/airflow: https://github.com/helm/charts/tree/master/stable/airflow
I have deployed it with celery executor and I have run a task that need to read a big table. I am getting this error in the Pod that run this task:
The node was low on resource: memory. Container base was using 3642536Ki, which exceeds its request of 0.
I understand that I have exceed the memory of the node is running this pod.
I want to modify the limit of the memory and cpu each pod use in airflow. I can see that I can limit the resources of the workers.
My question is:
How can I specify the memory requests, the limit for the pods that are going to be created from the worker? Because I can only see how to set the resources from the workers but not the Pots that the workers create.
