|
|
@ -27,18 +27,14 @@ import (
|
|
|
|
// Options represents configurable options used to create client and server TLS configurations.
|
|
|
|
// Options represents configurable options used to create client and server TLS configurations.
|
|
|
|
type Options struct {
|
|
|
|
type Options struct {
|
|
|
|
CaCertFile string
|
|
|
|
CaCertFile string
|
|
|
|
// If either the KeyFile or CertFile is empty, ClientConfig() will not load them,
|
|
|
|
// If either the KeyFile or CertFile is empty, ClientConfig() will not load them.
|
|
|
|
// preventing Helm from authenticating to Tiller. They are required to be non-empty
|
|
|
|
|
|
|
|
// when calling ServerConfig, otherwise an error is returned.
|
|
|
|
|
|
|
|
KeyFile string
|
|
|
|
KeyFile string
|
|
|
|
CertFile string
|
|
|
|
CertFile string
|
|
|
|
// Client-only options
|
|
|
|
// Client-only options
|
|
|
|
InsecureSkipVerify bool
|
|
|
|
InsecureSkipVerify bool
|
|
|
|
// Server-only options
|
|
|
|
|
|
|
|
ClientAuth tls.ClientAuthType
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ClientConfig retusn a TLS configuration for use by a Helm client.
|
|
|
|
// ClientConfig returns a TLS configuration for use by a Helm client.
|
|
|
|
func ClientConfig(opts Options) (cfg *tls.Config, err error) {
|
|
|
|
func ClientConfig(opts Options) (cfg *tls.Config, err error) {
|
|
|
|
var cert *tls.Certificate
|
|
|
|
var cert *tls.Certificate
|
|
|
|
var pool *x509.CertPool
|
|
|
|
var pool *x509.CertPool
|
|
|
@ -60,24 +56,3 @@ func ClientConfig(opts Options) (cfg *tls.Config, err error) {
|
|
|
|
cfg = &tls.Config{InsecureSkipVerify: opts.InsecureSkipVerify, Certificates: []tls.Certificate{*cert}, RootCAs: pool}
|
|
|
|
cfg = &tls.Config{InsecureSkipVerify: opts.InsecureSkipVerify, Certificates: []tls.Certificate{*cert}, RootCAs: pool}
|
|
|
|
return cfg, nil
|
|
|
|
return cfg, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ServerConfig returns a TLS configuration for use by the Tiller server.
|
|
|
|
|
|
|
|
func ServerConfig(opts Options) (cfg *tls.Config, err error) {
|
|
|
|
|
|
|
|
var cert *tls.Certificate
|
|
|
|
|
|
|
|
var pool *x509.CertPool
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if cert, err = CertFromFilePair(opts.CertFile, opts.KeyFile); err != nil {
|
|
|
|
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
|
|
|
|
return nil, errors.Wrapf(err, "could not load x509 key pair (cert: %q, key: %q)", opts.CertFile, opts.KeyFile)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, errors.Wrapf(err, "could not read x509 key pair (cert: %q, key: %q)", opts.CertFile, opts.KeyFile)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.ClientAuth >= tls.VerifyClientCertIfGiven && opts.CaCertFile != "" {
|
|
|
|
|
|
|
|
if pool, err = CertPoolFromFile(opts.CaCertFile); err != nil {
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cfg = &tls.Config{MinVersion: tls.VersionTLS12, ClientAuth: opts.ClientAuth, Certificates: []tls.Certificate{*cert}, ClientCAs: pool}
|
|
|
|
|
|
|
|
return cfg, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|