mirror of https://github.com/status-im/consul.git
1.1 KiB
1.1 KiB
CA certificate generation procedure
Client certificates
if tests like TestAPI_ClientTLSOptions
(or any other test using certificates located in ./test/client_certs
) are failing because of expired certificates, use ./generate.sh
script to regenerate a new set of certificate.
cd test/client_certs/
rm -rf *.pem *.crt *.key && ./generate.sh
CA certificates
if tests like TestAgent_ReloadConfigTLSConfigFailure
(or any other test using certificates located in ./test/ca
) are failing because of expired certificates, use ./generate.sh
script to regenerate a new set of certificate.
cd test/ca/
rm -rf *.pem *.crt *.key && ./generate.sh
Hostname certificates
if tests like TestNewDialer_WithALPNWrapper
(or any other test using certificates located in ./test/hostname
) are failing because of expired certificates, use ./generate.sh
script to regenerate a new set of certificate.
cd test/hostname/
# Avoid deleting CertAuth.crt and privkey.pem since they're referenced in myca.conf
rm -rf "[Bonnie|Betty|Bob|Alice].crt" *.key && ./generate.sh