danieldean commented on issue #53493: URL: https://github.com/apache/airflow/issues/53493#issuecomment-3094366369
I took a look at this and see that httpx is used. This issue on httpx is relevant: https://github.com/encode/httpx/issues/302 As it stands there is no way to alter anything via environment variables as httpx uses certifi. It looks like a cert can be added using the verify arguement which would involve code change to the API SDK. I managed to get a self-signed certificate working by customising the image and appending it to the certifi bundle. I think a good solution would be to have the certificate used for the api-server added to the trust store. This could be done regardless of whether it is self-signed or not and would require not extra config options. -- 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]
