I have been provided a .pfx
file. I would like to know how can i generate a root CA from that file please ?
My use case is:
i deployed Moon2 (test tool) on my aks cluster. Its GUI is accessible using HTTPS ( I created a secret having tls.key
and tls.crt
that are generated from that .pfx
file ) and everything works fine. However i get an error when i am requesting the websocket provided by this tool (ie: Moon2) saying : browserType.connect: unable to verify the first certificate
That is why i guess i have to run NODE_EXTRA_CA_CERTS=root-ca.pem npm test
. But i don't know how to generate root certificate (ie: root-ca.pem
) from .pfx file.
Any help would be appriciated !