From ab929626e2c502548cf117cde232f0ac42c1cf19 Mon Sep 17 00:00:00 2001 From: Ricardo Pchevuzinske Katz Date: Fri, 17 Feb 2017 16:59:29 -0200 Subject: [PATCH] Improve the Certificate Authentication and verify depth --- core/pkg/ingress/controller/backend_ssl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pkg/ingress/controller/backend_ssl.go b/core/pkg/ingress/controller/backend_ssl.go index fda361d1b..7a84a3d4f 100644 --- a/core/pkg/ingress/controller/backend_ssl.go +++ b/core/pkg/ingress/controller/backend_ssl.go @@ -122,7 +122,7 @@ func (ic *GenericController) getPemCertificate(secretName string) (*ingress.SSLC glog.V(3).Infof("Found certificate and private key, configuring %v as a TLS Secret", secretName) s, err = ssl.AddOrUpdateCertAndKey(nsSecName, cert, key, ca) } else if ca != nil { - glog.V(3).Infof("Found only ca.crt, configuring %v as an AuthCert secret", secretName) + glog.V(3).Infof("Found only ca.crt, configuring %v as an Certificate Authentication secret", secretName) s, err = ssl.AddCertAuth(nsSecName, ca) } else { return nil, fmt.Errorf("No keypair or CA cert could be found in %v", secretName)