We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since in our test instance DiracX is not signed with a "standard" CA, we had issues when running dirac-proxy-init from a DIRAC v9 client:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificat
So as a working solution, we have set the REQUESTS_CA_BUNDLE variable on the DIRAC server.
REQUESTS_CA_BUNDLE
For reference we've set it to point to a file containing the output of:
kubectl get secret myingress-cert -o jsonpath='{.data.ca\.crt}' | base64 --decode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since in our test instance DiracX is not signed with a "standard" CA, we had issues when running dirac-proxy-init from a DIRAC v9 client:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificat
So as a working solution, we have set the
REQUESTS_CA_BUNDLE
variable on the DIRAC server.For reference we've set it to point to a file containing the output of:
kubectl get secret myingress-cert -o jsonpath='{.data.ca\.crt}' | base64 --decode
The text was updated successfully, but these errors were encountered: