Python3 reques with cert and key "verified fail" Python3 reques with cert and key "verified fail" kubernetes kubernetes

Python3 reques with cert and key "verified fail"


Have you got your certificates verified using

openssl verify -CAfile your-cert.pm

I got the same Problem and solved by using full-chain certificates.please see your certificate contains fullchain(root,intermediate).And you can try like

import requeststest=request.get("url",verify="certificate-with-path")