aneesh-joseph commented on issue #9812:
URL: https://github.com/apache/airflow/issues/9812#issuecomment-659113921


   Came across the same problem yesterday and used this as a work around 
   
   ```
   default_args = {
       'executor_config': {
           'KubernetesExecutor': {
              'resources': {
               'limits' : {
                'cpu': "200m",
                'memory': "500Mi",
               },
               'requests' : {
                'cpu': "200m",
                 'memory': "500Mi"
               }
           }
          }
       }
   }
   ```


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to