Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1011 B

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/
rm -rf *.pem *.crt *.key && ./generate.sh