GitHub user onzyone edited a comment on the discussion: SSL CERTIFICATE_VERIFY_FAILED
hello @potiuk you are 100% correct :) ... i updated our REQUESTS_CA_BUNDLE to point to the k8s service-ca.crt file and now it is working as expected to add just a little more to this ... if you are using an ocp rout (or ingress) that has requires are crt or pem file you can add the following into your docker file: ``` RUN mv <python_root>/site-packages/certifi/cacert.pem <python_root>/site-packages/certifi/cacert.pem.bck && \ cat corp.crt >> <python_root>/site-packages/certifi/cacert.pem ``` GitHub link: https://github.com/apache/airflow/discussions/54634#discussioncomment-14153190 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
