added client_key and client_cert options to the agent config (#6319)

This commit is contained in:
Vishal Nayak
2019-03-01 15:11:16 -05:00
committed by GitHub
parent 7cc75c5f38
commit be555fccca
7 changed files with 28 additions and 2 deletions

View File

@@ -75,6 +75,12 @@ const (
// flagnameCAPath is the flag used in the base command to read in the CA
// cert path.
flagNameCAPath = "ca-path"
//flagNameClientCert is the flag used in the base command to read in the
//client key
flagNameClientKey = "client-key"
//flagNameClientCert is the flag used in the base command to read in the
//client cert
flagNameClientCert = "client-cert"
// flagNameTLSSkipVerify is the flag used in the base command to read in
// the option to ignore TLS certificate verification.
flagNameTLSSkipVerify = "tls-skip-verify"