2020-04-20 16:36:34 +00:00
package static
2023-02-03 14:24:05 +00:00
import "github.com/traefik/traefik/v3/pkg/plugins"
2020-04-20 16:36:34 +00:00
// Experimental experimental Traefik features.
type Experimental struct {
2024-11-06 10:58:04 +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" `
AbortOnPluginFailure bool ` description:"Defines whether all plugins must be loaded successfully for Traefik to start." json:"abortOnPluginFailure,omitempty" toml:"abortOnPluginFailure,omitempty" yaml:"abortOnPluginFailure,omitempty" export:"true" `
2021-06-25 13:50:09 +00:00
2024-09-26 09:00:05 +00:00
FastProxy * FastProxyConfig ` description:"Enable the FastProxy implementation." json:"fastProxy,omitempty" toml:"fastProxy,omitempty" yaml:"fastProxy,omitempty" label:"allowEmpty" file:"allowEmpty" export:"true" `
2024-06-24 08:36:03 +00:00
// Deprecated: KubernetesGateway provider is not an experimental feature starting with v3.1. Please remove its usage from the static configuration.
KubernetesGateway bool ` description:"(Deprecated) Allow the Kubernetes gateway api provider usage." json:"kubernetesGateway,omitempty" toml:"kubernetesGateway,omitempty" yaml:"kubernetesGateway,omitempty" export:"true" `
2020-04-20 16:36:34 +00:00
}
2024-09-26 09:00:05 +00:00
// FastProxyConfig holds the FastProxy configuration.
type FastProxyConfig struct {
Debug bool ` description:"Enable debug mode for the FastProxy implementation." json:"debug,omitempty" toml:"debug,omitempty" yaml:"debug,omitempty" export:"true" `
}