Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Gateway ¶ added in v1.8.1
type Gateway struct {
GlobalDownstreamMaxConnections uint64 `yaml:"globalDownstreamMaxConnections" envconfig:"kuma_proxy_gateway_global_downstream_max_connections"`
}
type Proxy ¶ added in v1.8.1
type Proxy struct { // Gateway holds data plane wide configuration for MeshGateway proxies Gateway Gateway `yaml:"gateway"` }
func DefaultProxyConfig ¶ added in v1.8.1
func DefaultProxyConfig() Proxy
type XdsServerConfig ¶
type XdsServerConfig struct { // Interval for re-genarting configuration for Dataplanes connected to the Control Plane DataplaneConfigurationRefreshInterval time.Duration `yaml:"dataplaneConfigurationRefreshInterval" envconfig:"kuma_xds_server_dataplane_configuration_refresh_interval"` // Interval for flushing status of Dataplanes connected to the Control Plane DataplaneStatusFlushInterval time.Duration `yaml:"dataplaneStatusFlushInterval" envconfig:"kuma_xds_server_dataplane_status_flush_interval"` // DataplaneDeregistrationDelay is a delay between proxy terminating a connection and the CP trying to deregister the proxy. // It is used only in universal mode when you use direct lifecycle. // Setting this setting to 0s disables the delay. // Disabling this may cause race conditions that one instance of CP removes proxy object // while proxy is connected to another instance of the CP. DataplaneDeregistrationDelay time.Duration `yaml:"dataplaneDeregistrationDelay" envconfig:"kuma_xds_dataplane_deregistration_delay"` // Backoff that is executed when Control Plane is sending the response that was previously rejected by Dataplane NACKBackoff time.Duration `yaml:"nackBackoff" envconfig:"kuma_xds_server_nack_backoff"` }
Envoy XDS server configuration
func DefaultXdsServerConfig ¶
func DefaultXdsServerConfig() *XdsServerConfig
func (*XdsServerConfig) Sanitize ¶
func (x *XdsServerConfig) Sanitize()
func (*XdsServerConfig) Validate ¶
func (x *XdsServerConfig) Validate() error
Click to show internal directories.
Click to hide internal directories.