2020-04-20 16:36:34 +00:00
|
|
|
package static
|
|
|
|
|
2020-09-16 13:46:04 +00:00
|
|
|
import "github.com/traefik/traefik/v2/pkg/plugins"
|
2020-04-20 16:36:34 +00:00
|
|
|
|
|
|
|
// Experimental experimental Traefik features.
|
|
|
|
type Experimental struct {
|
2020-12-15 15:40:05 +00:00
|
|
|
Plugins map[string]plugins.Descriptor `description:"Plugins configuration." json:"plugins,omitempty" toml:"plugins,omitempty" yaml:"plugins,omitempty" export:"true"`
|
|
|
|
DevPlugin *plugins.DevPlugin `description:"Dev plugin configuration." json:"devPlugin,omitempty" toml:"devPlugin,omitempty" yaml:"devPlugin,omitempty" export:"true"`
|
|
|
|
KubernetesGateway bool `description:"Allow the Kubernetes gateway api provider usage." json:"kubernetesGateway,omitempty" toml:"kubernetesGateway,omitempty" yaml:"kubernetesGateway,omitempty" export:"true"`
|
2021-01-07 13:48:04 +00:00
|
|
|
HTTP3 bool `description:"Enable HTTP3." json:"http3,omitempty" toml:"http3,omitempty" yaml:"http3,omitempty" export:"true"`
|
2020-04-20 16:36:34 +00:00
|
|
|
}
|