tlby commented on issue #56689: URL: https://github.com/apache/airflow/issues/56689#issuecomment-3563741861
I saw a similar, or perhaps the same issue and isolated it to a shell script problem in https://github.com/apache/airflow/blob/5326d9444fd1bda4b98b264b48360d5c437e017b/providers/amazon/src/airflow/providers/amazon/aws/hooks/eks.py#L83 which does not work in the [Running Airflow in Docker](https://airflow.apache.org/docs/apache-airflow/3.0.6/howto/docker-compose/index.html) setup where `sh` provided by `dash`. When `dash` tries to run this script it gives ``` ERROR - exec: process returned 1. sh: 5: source: Permission denied ``` in the task log. Changing `source` to `.` here resolved my issue with authorization failures in `EksPodOperator`. -- 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]
