Documentation ¶
Index ¶
- func CertFromFilePair(certFile, keyFile string) (*tls.Certificate, error)
- func CertPoolFromFile(filename string) (*x509.CertPool, error)
- func ClientConfig(opts Options) (cfg *tls.Config, err error)
- func NewClientTLS(certFile, keyFile, caFile string) (*tls.Config, error)
- func NewTLSConfig(url, certFile, keyFile, caFile string) (*tls.Config, error)
- func ServerConfig(opts Options) (cfg *tls.Config, err error)
- type Options
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CertFromFilePair ¶
func CertFromFilePair(certFile, keyFile string) (*tls.Certificate, error)
CertFromFilePair returns an tls.Certificate containing the certificates public/private key pair from a pair of given PEM-encoded files. Returns an error if the file could not be read, a certificate could not be parsed, or if the file does not contain any certificates
func CertPoolFromFile ¶
CertPoolFromFile returns an x509.CertPool containing the certificates in the given PEM-encoded file. Returns an error if the file could not be read, a certificate could not be parsed, or if the file does not contain any certificates
func ClientConfig ¶
ClientConfig returns a TLS configuration for use by a Helm client.
func NewClientTLS ¶
NewClientTLS returns tls.Config appropriate for client auth.
func NewTLSConfig ¶
NewTLSConfig returns tls.Config appropriate for client and/or server auth.
Types ¶
type Options ¶
type Options struct { CaCertFile string // 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 CertFile string // Client-only options InsecureSkipVerify bool // Overrides the server name used to verify the hostname on the returned // certificates from the server. ServerName string // Server-only options ClientAuth tls.ClientAuthType }
Options represents configurable options used to create client and server TLS configurations.