36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
package dynamic
|
|
|
|
import (
|
|
"github.com/containous/traefik/v2/pkg/tls"
|
|
)
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// Message holds configuration information exchanged between parts of traefik.
|
|
type Message struct {
|
|
ProviderName string
|
|
Configuration *Configuration
|
|
}
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// Configurations is for currentConfigurations Map.
|
|
type Configurations map[string]*Configuration
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// Configuration is the root of the dynamic configuration
|
|
type Configuration struct {
|
|
HTTP *HTTPConfiguration `json:"http,omitempty" toml:"http,omitempty" yaml:"http,omitempty"`
|
|
TCP *TCPConfiguration `json:"tcp,omitempty" toml:"tcp,omitempty" yaml:"tcp,omitempty"`
|
|
TLS *TLSConfiguration `json:"tls,omitempty" toml:"tls,omitempty" yaml:"tls,omitempty"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// TLSConfiguration contains all the configuration parameters of a TLS connection.
|
|
type TLSConfiguration struct {
|
|
Certificates []*tls.CertAndStores `json:"certificates,omitempty" toml:"certificates,omitempty" yaml:"certificates,omitempty" label:"-"`
|
|
Options map[string]tls.Options `json:"options,omitempty" toml:"options,omitempty" yaml:"options,omitempty"`
|
|
Stores map[string]tls.Store `json:"stores,omitempty" toml:"stores,omitempty" yaml:"stores,omitempty"`
|
|
}
|