gfeldman commented on issue #26527:
URL: https://github.com/apache/airflow/issues/26527#issuecomment-1252499475
The pod override looks like
```
k8s.V1Pod(
spec=k8s.V1PodSpec(
containers=[
k8s.V1Container(
name="base",
resources=k8s.V1ResourceRequirements(
limits=resources_dict,
requests=resources_dict,
),
),
],
tolerations=tolerations,
node_selector=node_selector,
)
)
```
where I import `from kubernetes.client import models as k8s`
--
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]