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 {
|
2021-06-25 13:50:09 +00:00
|
|
|
Plugins map[string]plugins.Descriptor `description:"Plugins configuration." json:"plugins,omitempty" toml:"plugins,omitempty" yaml:"plugins,omitempty" export:"true"`
|
|
|
|
LocalPlugins map[string]plugins.LocalDescriptor `description:"Local plugins configuration." json:"localPlugins,omitempty" toml:"localPlugins,omitempty" yaml:"localPlugins,omitempty" export:"true"`
|
|
|
|
|
|
|
|
KubernetesGateway bool `description:"Allow the Kubernetes gateway api provider usage." json:"kubernetesGateway,omitempty" toml:"kubernetesGateway,omitempty" yaml:"kubernetesGateway,omitempty" export:"true"`
|
|
|
|
HTTP3 bool `description:"Enable HTTP3." json:"http3,omitempty" toml:"http3,omitempty" yaml:"http3,omitempty" export:"true"`
|
2022-03-24 18:44:08 +00:00
|
|
|
Hub bool `description:"Enable the Traefik Hub provider." json:"hub,omitempty" toml:"hub,omitempty" yaml:"hub,omitempty" export:"true"`
|
2020-04-20 16:36:34 +00:00
|
|
|
}
|