2019-07-10 07:26:04 +00:00
package dynamic
2018-11-14 09:18:03 +00:00
2019-07-19 09:52:04 +00:00
import (
"reflect"
2020-09-11 13:40:03 +00:00
"time"
2019-07-19 09:52:04 +00:00
2020-09-11 13:40:03 +00:00
ptypes "github.com/traefik/paerser/types"
2021-07-15 12:02:11 +00:00
traefiktls "github.com/traefik/traefik/v2/pkg/tls"
2020-09-16 13:46:04 +00:00
"github.com/traefik/traefik/v2/pkg/types"
2019-07-19 09:52:04 +00:00
)
2019-07-01 09:30:05 +00:00
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2019-07-01 09:30:05 +00:00
// HTTPConfiguration contains all the HTTP configuration parameters.
type HTTPConfiguration struct {
2020-12-03 14:52:05 +00:00
Routers map [ string ] * Router ` json:"routers,omitempty" toml:"routers,omitempty" yaml:"routers,omitempty" export:"true" `
Services map [ string ] * Service ` json:"services,omitempty" toml:"services,omitempty" yaml:"services,omitempty" export:"true" `
Middlewares map [ string ] * Middleware ` json:"middlewares,omitempty" toml:"middlewares,omitempty" yaml:"middlewares,omitempty" export:"true" `
Models map [ string ] * Model ` json:"models,omitempty" toml:"models,omitempty" yaml:"models,omitempty" export:"true" `
ServersTransports map [ string ] * ServersTransport ` json:"serversTransports,omitempty" toml:"serversTransports,omitempty" yaml:"serversTransports,omitempty" label:"-" export:"true" `
2020-03-05 11:46:05 +00:00
}
// +k8s:deepcopy-gen=true
// Model is a set of default router's values.
type Model struct {
2020-12-03 14:52:05 +00:00
Middlewares [ ] string ` json:"middlewares,omitempty" toml:"middlewares,omitempty" yaml:"middlewares,omitempty" export:"true" `
2022-03-22 10:04:08 +00:00
TLS * RouterTLSConfig ` json:"tls,omitempty" toml:"tls,omitempty" yaml:"tls,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2019-07-01 09:30:05 +00:00
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2019-07-01 09:30:05 +00:00
// Service holds a service configuration (can only be of one type at the same time).
type Service struct {
2020-12-03 14:52:05 +00:00
LoadBalancer * ServersLoadBalancer ` json:"loadBalancer,omitempty" toml:"loadBalancer,omitempty" yaml:"loadBalancer,omitempty" export:"true" `
Weighted * WeightedRoundRobin ` json:"weighted,omitempty" toml:"weighted,omitempty" yaml:"weighted,omitempty" label:"-" export:"true" `
Mirroring * Mirroring ` json:"mirroring,omitempty" toml:"mirroring,omitempty" yaml:"mirroring,omitempty" label:"-" export:"true" `
2022-03-17 11:02:09 +00:00
Failover * Failover ` json:"failover,omitempty" toml:"failover,omitempty" yaml:"failover,omitempty" label:"-" export:"true" `
2019-07-01 09:30:05 +00:00
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2018-11-14 09:18:03 +00:00
// Router holds the router configuration.
type Router struct {
2020-12-03 14:52:05 +00:00
EntryPoints [ ] string ` json:"entryPoints,omitempty" toml:"entryPoints,omitempty" yaml:"entryPoints,omitempty" export:"true" `
Middlewares [ ] string ` json:"middlewares,omitempty" toml:"middlewares,omitempty" yaml:"middlewares,omitempty" export:"true" `
Service string ` json:"service,omitempty" toml:"service,omitempty" yaml:"service,omitempty" export:"true" `
2019-07-01 09:30:05 +00:00
Rule string ` json:"rule,omitempty" toml:"rule,omitempty" yaml:"rule,omitempty" `
2020-12-03 14:52:05 +00:00
Priority int ` json:"priority,omitempty" toml:"priority,omitempty,omitzero" yaml:"priority,omitempty" export:"true" `
2022-03-22 10:04:08 +00:00
TLS * RouterTLSConfig ` json:"tls,omitempty" toml:"tls,omitempty" yaml:"tls,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2019-03-14 08:30:04 +00:00
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2020-05-11 10:06:07 +00:00
// RouterTLSConfig holds the TLS configuration for a router.
2019-06-17 16:14:08 +00:00
type RouterTLSConfig struct {
2020-12-03 14:52:05 +00:00
Options string ` json:"options,omitempty" toml:"options,omitempty" yaml:"options,omitempty" export:"true" `
CertResolver string ` json:"certResolver,omitempty" toml:"certResolver,omitempty" yaml:"certResolver,omitempty" export:"true" `
Domains [ ] types . Domain ` json:"domains,omitempty" toml:"domains,omitempty" yaml:"domains,omitempty" export:"true" `
2019-06-17 16:14:08 +00:00
}
2019-03-14 08:30:04 +00:00
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2019-08-26 17:00:04 +00:00
// Mirroring holds the Mirroring configuration.
type Mirroring struct {
2020-12-03 14:52:05 +00:00
Service string ` json:"service,omitempty" toml:"service,omitempty" yaml:"service,omitempty" export:"true" `
MaxBodySize * int64 ` json:"maxBodySize,omitempty" toml:"maxBodySize,omitempty" yaml:"maxBodySize,omitempty" export:"true" `
Mirrors [ ] MirrorService ` json:"mirrors,omitempty" toml:"mirrors,omitempty" yaml:"mirrors,omitempty" export:"true" `
2022-03-22 10:04:08 +00:00
HealthCheck * HealthCheck ` json:"healthCheck,omitempty" toml:"healthCheck,omitempty" yaml:"healthCheck,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2020-03-05 17:03:08 +00:00
}
// SetDefaults Default values for a WRRService.
func ( m * Mirroring ) SetDefaults ( ) {
var defaultMaxBodySize int64 = - 1
m . MaxBodySize = & defaultMaxBodySize
2019-08-26 17:00:04 +00:00
}
// +k8s:deepcopy-gen=true
2022-03-17 11:02:09 +00:00
// Failover holds the Failover configuration.
type Failover struct {
Service string ` json:"service,omitempty" toml:"service,omitempty" yaml:"service,omitempty" export:"true" `
Fallback string ` json:"fallback,omitempty" toml:"fallback,omitempty" yaml:"fallback,omitempty" export:"true" `
HealthCheck * HealthCheck ` json:"healthCheck,omitempty" toml:"healthCheck,omitempty" yaml:"healthCheck,omitempty" label:"allowEmpty" file:"allowEmpty" export:"true" `
}
// +k8s:deepcopy-gen=true
2019-08-26 17:00:04 +00:00
// MirrorService holds the MirrorService configuration.
type MirrorService struct {
2020-12-03 14:52:05 +00:00
Name string ` json:"name,omitempty" toml:"name,omitempty" yaml:"name,omitempty" export:"true" `
Percent int ` json:"percent,omitempty" toml:"percent,omitempty" yaml:"percent,omitempty" export:"true" `
2019-08-26 17:00:04 +00:00
}
// +k8s:deepcopy-gen=true
2019-08-26 08:30:05 +00:00
// WeightedRoundRobin is a weighted round robin load-balancer of services.
type WeightedRoundRobin struct {
2020-12-03 14:52:05 +00:00
Services [ ] WRRService ` json:"services,omitempty" toml:"services,omitempty" yaml:"services,omitempty" export:"true" `
Sticky * Sticky ` json:"sticky,omitempty" toml:"sticky,omitempty" yaml:"sticky,omitempty" export:"true" `
2021-06-25 19:08:11 +00:00
// HealthCheck enables automatic self-healthcheck for this service, i.e.
// whenever one of its children is reported as down, this service becomes aware of it,
// and takes it into account (i.e. it ignores the down child) when running the
// load-balancing algorithm. In addition, if the parent of this service also has
// HealthCheck enabled, this service reports to its parent any status change.
2022-03-22 10:04:08 +00:00
HealthCheck * HealthCheck ` json:"healthCheck,omitempty" toml:"healthCheck,omitempty" yaml:"healthCheck,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2019-08-26 08:30:05 +00:00
}
// +k8s:deepcopy-gen=true
2022-03-17 11:02:09 +00:00
// WRRService is a reference to a service load-balanced with weighted round-robin.
2019-08-26 08:30:05 +00:00
type WRRService struct {
2020-12-03 14:52:05 +00:00
Name string ` json:"name,omitempty" toml:"name,omitempty" yaml:"name,omitempty" export:"true" `
Weight * int ` json:"weight,omitempty" toml:"weight,omitempty" yaml:"weight,omitempty" export:"true" `
2019-08-26 08:30:05 +00:00
}
2019-09-13 18:00:06 +00:00
// SetDefaults Default values for a WRRService.
2019-08-26 08:30:05 +00:00
func ( w * WRRService ) SetDefaults ( ) {
defaultWeight := 1
w . Weight = & defaultWeight
}
// +k8s:deepcopy-gen=true
// Sticky holds the sticky configuration.
type Sticky struct {
2022-03-22 10:04:08 +00:00
Cookie * Cookie ` json:"cookie,omitempty" toml:"cookie,omitempty" yaml:"cookie,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2019-08-26 08:30:05 +00:00
}
// +k8s:deepcopy-gen=true
// Cookie holds the sticky configuration based on cookie.
type Cookie struct {
2020-12-03 14:52:05 +00:00
Name string ` json:"name,omitempty" toml:"name,omitempty" yaml:"name,omitempty" export:"true" `
Secure bool ` json:"secure,omitempty" toml:"secure,omitempty" yaml:"secure,omitempty" export:"true" `
HTTPOnly bool ` json:"httpOnly,omitempty" toml:"httpOnly,omitempty" yaml:"httpOnly,omitempty" export:"true" `
SameSite string ` json:"sameSite,omitempty" toml:"sameSite,omitempty" yaml:"sameSite,omitempty" export:"true" `
2019-08-26 08:30:05 +00:00
}
// +k8s:deepcopy-gen=true
// ServersLoadBalancer holds the ServersLoadBalancer configuration.
type ServersLoadBalancer struct {
2022-03-22 10:04:08 +00:00
Sticky * Sticky ` json:"sticky,omitempty" toml:"sticky,omitempty" yaml:"sticky,omitempty" label:"allowEmpty" file:"allowEmpty" kv:"allowEmpty" export:"true" `
2021-06-25 19:08:11 +00:00
Servers [ ] Server ` json:"servers,omitempty" toml:"servers,omitempty" yaml:"servers,omitempty" label-slice-as-struct:"server" export:"true" `
// HealthCheck enables regular active checks of the responsiveness of the
// children servers of this load-balancer. To propagate status changes (e.g. all
// servers of this service are down) upwards, HealthCheck must also be enabled on
// the parent(s) of this service.
HealthCheck * ServerHealthCheck ` json:"healthCheck,omitempty" toml:"healthCheck,omitempty" yaml:"healthCheck,omitempty" export:"true" `
2020-12-03 14:52:05 +00:00
PassHostHeader * bool ` json:"passHostHeader" toml:"passHostHeader" yaml:"passHostHeader" export:"true" `
ResponseForwarding * ResponseForwarding ` json:"responseForwarding,omitempty" toml:"responseForwarding,omitempty" yaml:"responseForwarding,omitempty" export:"true" `
ServersTransport string ` json:"serversTransport,omitempty" toml:"serversTransport,omitempty" yaml:"serversTransport,omitempty" export:"true" `
2018-11-14 09:18:03 +00:00
}
2019-01-18 14:18:04 +00:00
// Mergeable tells if the given service is mergeable.
2019-08-26 08:30:05 +00:00
func ( l * ServersLoadBalancer ) Mergeable ( loadBalancer * ServersLoadBalancer ) bool {
2019-01-18 14:18:04 +00:00
savedServers := l . Servers
defer func ( ) {
l . Servers = savedServers
} ( )
l . Servers = nil
savedServersLB := loadBalancer . Servers
defer func ( ) {
loadBalancer . Servers = savedServersLB
} ( )
loadBalancer . Servers = nil
return reflect . DeepEqual ( l , loadBalancer )
}
2019-08-26 08:30:05 +00:00
// SetDefaults Default values for a ServersLoadBalancer.
func ( l * ServersLoadBalancer ) SetDefaults ( ) {
2019-09-30 16:12:04 +00:00
defaultPassHostHeader := true
l . PassHostHeader = & defaultPassHostHeader
2019-01-18 14:18:04 +00:00
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2018-11-14 09:18:03 +00:00
// ResponseForwarding holds configuration for the forward of the response.
type ResponseForwarding struct {
2020-12-03 14:52:05 +00:00
FlushInterval string ` json:"flushInterval,omitempty" toml:"flushInterval,omitempty" yaml:"flushInterval,omitempty" export:"true" `
2018-11-14 09:18:03 +00:00
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2018-11-14 09:18:03 +00:00
// Server holds the server configuration.
type Server struct {
2019-07-01 09:30:05 +00:00
URL string ` json:"url,omitempty" toml:"url,omitempty" yaml:"url,omitempty" label:"-" `
2020-06-17 14:48:04 +00:00
Scheme string ` toml:"-" json:"-" yaml:"-" file:"-" `
Port string ` toml:"-" json:"-" yaml:"-" file:"-" `
2018-11-14 09:18:03 +00:00
}
2019-01-18 14:18:04 +00:00
// SetDefaults Default values for a Server.
func ( s * Server ) SetDefaults ( ) {
s . Scheme = "http"
}
2019-07-09 13:18:04 +00:00
// +k8s:deepcopy-gen=true
2021-06-25 19:08:11 +00:00
// ServerHealthCheck holds the HealthCheck configuration.
type ServerHealthCheck struct {
2020-12-03 14:52:05 +00:00
Scheme string ` json:"scheme,omitempty" toml:"scheme,omitempty" yaml:"scheme,omitempty" export:"true" `
Path string ` json:"path,omitempty" toml:"path,omitempty" yaml:"path,omitempty" export:"true" `
Port int ` json:"port,omitempty" toml:"port,omitempty,omitzero" yaml:"port,omitempty" export:"true" `
2020-08-17 16:04:03 +00:00
// FIXME change string to ptypes.Duration
2020-12-03 14:52:05 +00:00
Interval string ` json:"interval,omitempty" toml:"interval,omitempty" yaml:"interval,omitempty" export:"true" `
2020-08-17 16:04:03 +00:00
// FIXME change string to ptypes.Duration
2020-12-03 14:52:05 +00:00
Timeout string ` json:"timeout,omitempty" toml:"timeout,omitempty" yaml:"timeout,omitempty" export:"true" `
2020-02-26 16:28:04 +00:00
Hostname string ` json:"hostname,omitempty" toml:"hostname,omitempty" yaml:"hostname,omitempty" `
2020-12-03 14:52:05 +00:00
FollowRedirects * bool ` json:"followRedirects" toml:"followRedirects" yaml:"followRedirects" export:"true" `
Headers map [ string ] string ` json:"headers,omitempty" toml:"headers,omitempty" yaml:"headers,omitempty" export:"true" `
2020-02-26 16:28:04 +00:00
}
// SetDefaults Default values for a HealthCheck.
2021-06-25 19:08:11 +00:00
func ( h * ServerHealthCheck ) SetDefaults ( ) {
2020-02-26 16:28:04 +00:00
fr := true
h . FollowRedirects = & fr
2019-03-14 08:30:04 +00:00
}
2020-09-11 13:40:03 +00:00
// +k8s:deepcopy-gen=true
2021-06-25 19:08:11 +00:00
// HealthCheck controls healthcheck awareness and propagation at the services level.
type HealthCheck struct { }
// +k8s:deepcopy-gen=true
2020-09-11 13:40:03 +00:00
// ServersTransport options to configure communication between Traefik and the servers.
type ServersTransport struct {
2021-11-09 11:16:08 +00:00
ServerName string ` description:"ServerName used to contact the server." json:"serverName,omitempty" toml:"serverName,omitempty" yaml:"serverName,omitempty" `
2021-07-15 12:02:11 +00:00
InsecureSkipVerify bool ` description:"Disable SSL certificate verification." json:"insecureSkipVerify,omitempty" toml:"insecureSkipVerify,omitempty" yaml:"insecureSkipVerify,omitempty" export:"true" `
RootCAs [ ] traefiktls . FileOrContent ` description:"Add cert file for self-signed certificate." json:"rootCAs,omitempty" toml:"rootCAs,omitempty" yaml:"rootCAs,omitempty" `
Certificates traefiktls . Certificates ` description:"Certificates for mTLS." json:"certificates,omitempty" toml:"certificates,omitempty" yaml:"certificates,omitempty" export:"true" `
MaxIdleConnsPerHost int ` description:"If non-zero, controls the maximum idle (keep-alive) to keep per-host. If zero, DefaultMaxIdleConnsPerHost is used" json:"maxIdleConnsPerHost,omitempty" toml:"maxIdleConnsPerHost,omitempty" yaml:"maxIdleConnsPerHost,omitempty" export:"true" `
ForwardingTimeouts * ForwardingTimeouts ` description:"Timeouts for requests forwarded to the backend servers." json:"forwardingTimeouts,omitempty" toml:"forwardingTimeouts,omitempty" yaml:"forwardingTimeouts,omitempty" export:"true" `
DisableHTTP2 bool ` description:"Disable HTTP/2 for connections with backend servers." json:"disableHTTP2,omitempty" toml:"disableHTTP2,omitempty" yaml:"disableHTTP2,omitempty" export:"true" `
PeerCertURI string ` description:"URI used to match against SAN URI during the peer certificate verification." json:"peerCertURI,omitempty" toml:"peerCertURI,omitempty" yaml:"peerCertURI,omitempty" export:"true" `
2020-09-11 13:40:03 +00:00
}
// +k8s:deepcopy-gen=true
// ForwardingTimeouts contains timeout configurations for forwarding requests to the backend servers.
type ForwardingTimeouts struct {
DialTimeout ptypes . Duration ` description:"The amount of time to wait until a connection to a backend server can be established. If zero, no timeout exists." json:"dialTimeout,omitempty" toml:"dialTimeout,omitempty" yaml:"dialTimeout,omitempty" export:"true" `
ResponseHeaderTimeout ptypes . Duration ` description:"The amount of time to wait for a server's response headers after fully writing the request (including its body, if any). If zero, no timeout exists." json:"responseHeaderTimeout,omitempty" toml:"responseHeaderTimeout,omitempty" yaml:"responseHeaderTimeout,omitempty" export:"true" `
2021-11-09 11:16:08 +00:00
IdleConnTimeout ptypes . Duration ` description:"The maximum period for which an idle HTTP keep-alive connection will remain open before closing itself." json:"idleConnTimeout,omitempty" toml:"idleConnTimeout,omitempty" yaml:"idleConnTimeout,omitempty" export:"true" `
ReadIdleTimeout ptypes . Duration ` description:"The timeout after which a health check using ping frame will be carried out if no frame is received on the HTTP/2 connection. If zero, no health check is performed." json:"readIdleTimeout,omitempty" toml:"readIdleTimeout,omitempty" yaml:"readIdleTimeout,omitempty" export:"true" `
PingTimeout ptypes . Duration ` description:"The timeout after which the HTTP/2 connection will be closed if a response to ping is not received." json:"pingTimeout,omitempty" toml:"pingTimeout,omitempty" yaml:"pingTimeout,omitempty" export:"true" `
2020-09-11 13:40:03 +00:00
}
// SetDefaults sets the default values.
func ( f * ForwardingTimeouts ) SetDefaults ( ) {
f . DialTimeout = ptypes . Duration ( 30 * time . Second )
f . IdleConnTimeout = ptypes . Duration ( 90 * time . Second )
2021-11-09 11:16:08 +00:00
f . PingTimeout = ptypes . Duration ( 15 * time . Second )
2020-09-11 13:40:03 +00:00
}