SKisContent commented on PR #41628:
URL: https://github.com/apache/airflow/pull/41628#issuecomment-2301208182
@nevcohen I may not be understanding your question. The proposed change
allows for a separate set of resource specifications for the Kubernetes worker
pod. In my case, my values.yaml file under the workers section contains this:
```
resources:
limits:
memory: 8500Mi
requests:
cpu: 2000m
memory: 4500Mi
# Additional resource requests for the KubernetesExecutor pods
kubernetes_resources:
limits:
memory: 512Mi
requests:
cpu: 200m
memory: 128Mi
```
Thus the Celery worker pods are scheduled on nodes that have at least 2
vCPUs available, and the Kubernetes worker pods get scheduled on nodes that
have 0.2 vCPUs.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]