Documentation
¶
Index ¶
- Constants
- func ConvertBandwidthToKbps(bandwidth string) (uint64, error)
- func ConvertPercentage(percentage *wrappers.DoubleValue) *envoy_type.FractionalPercent
- func NewUnexpectedFilterConfigTypeError(actual, expected proto.Message) error
- func UpdateFilterConfig(filterChain *envoy_listener.FilterChain, filterName string, ...) error
- func UpdateHTTPConnectionManager(filterChain *envoy_listener.FilterChain, ...) error
- func UpdateTCPProxy(filterChain *envoy_listener.FilterChain, ...) error
- type AccessLogConfigurer
- type DNSConfigurer
- type DnsTableByName
- type FaultInjectionConfigurer
- type FilterChainConfigurer
- type FilterChainMatchConfigurer
- type GrpcStatsConfigurer
- type HttpAccessLogConfigurer
- type HttpConnectionManagerConfigurer
- type HttpInboundRoutesConfigurer
- type HttpOutboundRouteConfigurer
- type HttpStaticRouteConfigurer
- type InboundListenerConfigurer
- type KafkaConfigurer
- type ListenerConfigurer
- type MaxConnectAttemptsConfigurer
- type NetworkAccessLogConfigurer
- type NetworkRBACConfigurer
- type OriginalDstForwarderConfigurer
- type OutboundListenerConfigurer
- type RateLimitConfigurer
- type RetryConfigurer
- type ServerSideMTLSConfigurer
- type SourceMatcherConfigurer
- type StaticEndpointsConfigurer
- type TLSInspectorConfigurer
- type TcpProxyConfigurer
- type TimeoutConfigurer
- type TracingConfigurer
- type TransparentProxyingConfigurer
Constants ¶
View Source
const ( HttpRetryOnDefault = "gateway-error,connect-failure," + "refused-stream" HttpRetryOnRetriableStatusCodes = "connect-failure,refused-stream," + "retriable-status-codes" GrpcRetryOnAll = "cancelled,connect-failure," + "gateway-error,refused-stream,reset,resource-exhausted,unavailable" )
Variables ¶
This section is empty.
Functions ¶
func ConvertBandwidthToKbps ¶
func ConvertPercentage ¶
func ConvertPercentage(percentage *wrappers.DoubleValue) *envoy_type.FractionalPercent
func UpdateFilterConfig ¶
func UpdateFilterConfig(filterChain *envoy_listener.FilterChain, filterName string, updateFunc func(proto.Message) error) error
func UpdateHTTPConnectionManager ¶
func UpdateHTTPConnectionManager(filterChain *envoy_listener.FilterChain, updateFunc func(manager *envoy_hcm.HttpConnectionManager) error) error
func UpdateTCPProxy ¶
func UpdateTCPProxy(filterChain *envoy_listener.FilterChain, updateFunc func(*envoy_tcp.TcpProxy) error) error
Types ¶
type AccessLogConfigurer ¶
type AccessLogConfigurer struct { Mesh string TrafficDirection envoy.TrafficDirection SourceService string DestinationService string Backend *mesh_proto.LoggingBackend Proxy *core_xds.Proxy }
type DNSConfigurer ¶
func (*DNSConfigurer) Configure ¶
func (c *DNSConfigurer) Configure(listener *envoy_listener.Listener) error
type DnsTableByName ¶
type DnsTableByName []*envoy_data_dns.DnsTable_DnsVirtualDomain
func (DnsTableByName) Len ¶
func (a DnsTableByName) Len() int
func (DnsTableByName) Less ¶
func (a DnsTableByName) Less(i, j int) bool
func (DnsTableByName) Swap ¶
func (a DnsTableByName) Swap(i, j int)
type FaultInjectionConfigurer ¶
type FaultInjectionConfigurer struct {
FaultInjection *mesh_proto.FaultInjection
}
func (*FaultInjectionConfigurer) Configure ¶
func (f *FaultInjectionConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type FilterChainConfigurer ¶
type FilterChainConfigurer interface { // Configure configures a single aspect on a given Envoy filter chain. Configure(filterChain *envoy_listener.FilterChain) error }
FilterChainConfigurer is responsible for configuring a single aspect of the entire Envoy filter chain, such as TcpProxy filter, RBAC filter, access log, etc.
type FilterChainMatchConfigurer ¶
func (*FilterChainMatchConfigurer) Configure ¶
func (f *FilterChainMatchConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type GrpcStatsConfigurer ¶
type GrpcStatsConfigurer struct { }
func (*GrpcStatsConfigurer) Configure ¶
func (g *GrpcStatsConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type HttpAccessLogConfigurer ¶
type HttpAccessLogConfigurer struct {
AccessLogConfigurer
}
func (*HttpAccessLogConfigurer) Configure ¶
func (c *HttpAccessLogConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type HttpConnectionManagerConfigurer ¶
func (*HttpConnectionManagerConfigurer) Configure ¶
func (c *HttpConnectionManagerConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type HttpInboundRoutesConfigurer ¶
type HttpInboundRoutesConfigurer struct { Service string Routes envoy_common.Routes }
func (*HttpInboundRoutesConfigurer) Configure ¶
func (c *HttpInboundRoutesConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type HttpOutboundRouteConfigurer ¶
type HttpOutboundRouteConfigurer struct { Service string Routes envoy_common.Routes DpTags mesh_proto.MultiValueTagSet }
func (*HttpOutboundRouteConfigurer) Configure ¶
func (c *HttpOutboundRouteConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type HttpStaticRouteConfigurer ¶
type HttpStaticRouteConfigurer struct {
Builder *envoy_routes.RouteConfigurationBuilder
}
func (*HttpStaticRouteConfigurer) Configure ¶
func (c *HttpStaticRouteConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type InboundListenerConfigurer ¶
type InboundListenerConfigurer struct { Protocol core_xds.SocketAddressProtocol ListenerName string Address string Port uint32 }
func (*InboundListenerConfigurer) Configure ¶
func (c *InboundListenerConfigurer) Configure(l *envoy_listener.Listener) error
type KafkaConfigurer ¶
type KafkaConfigurer struct {
StatsName string
}
func (*KafkaConfigurer) Configure ¶
func (c *KafkaConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type ListenerConfigurer ¶
type ListenerConfigurer interface { // Configure configures a single aspect on a given Envoy listener. Configure(listener *envoy_listener.Listener) error }
ListenerConfigurer is responsible for configuring a single aspect of the entire Envoy listener, such as filter chain, transparent proxying, etc.
type MaxConnectAttemptsConfigurer ¶
type MaxConnectAttemptsConfigurer struct {
Retry *core_mesh.RetryResource
}
func (*MaxConnectAttemptsConfigurer) Configure ¶
func (c *MaxConnectAttemptsConfigurer) Configure( filterChain *envoy_listener.FilterChain, ) error
type NetworkAccessLogConfigurer ¶
type NetworkAccessLogConfigurer struct {
AccessLogConfigurer
}
func (*NetworkAccessLogConfigurer) Configure ¶
func (c *NetworkAccessLogConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type NetworkRBACConfigurer ¶
type NetworkRBACConfigurer struct { StatsName string Permission *mesh_core.TrafficPermissionResource }
func (*NetworkRBACConfigurer) Configure ¶
func (c *NetworkRBACConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type OriginalDstForwarderConfigurer ¶
type OriginalDstForwarderConfigurer struct { }
func (*OriginalDstForwarderConfigurer) Configure ¶
func (c *OriginalDstForwarderConfigurer) Configure(l *envoy_listener.Listener) error
type OutboundListenerConfigurer ¶
type OutboundListenerConfigurer struct { ListenerName string Address string Port uint32 Protocol core_xds.SocketAddressProtocol }
type RateLimitConfigurer ¶
type RateLimitConfigurer struct {
RateLimits []*mesh_proto.RateLimit
}
func (*RateLimitConfigurer) Configure ¶
func (r *RateLimitConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type RetryConfigurer ¶
type RetryConfigurer struct { Retry *core_mesh.RetryResource Protocol core_mesh.Protocol }
func (*RetryConfigurer) Configure ¶
func (c *RetryConfigurer) Configure( filterChain *envoy_listener.FilterChain, ) error
type ServerSideMTLSConfigurer ¶
type ServerSideMTLSConfigurer struct { Ctx xds_context.Context Metadata *core_xds.DataplaneMetadata }
func (*ServerSideMTLSConfigurer) Configure ¶
func (c *ServerSideMTLSConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type SourceMatcherConfigurer ¶
type SourceMatcherConfigurer struct {
Address string
}
func (*SourceMatcherConfigurer) Configure ¶
func (c *SourceMatcherConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type StaticEndpointsConfigurer ¶
type StaticEndpointsConfigurer struct { VirtualHostName string Paths []*envoy_common.StaticEndpointPath KeyPair *tls.KeyPair }
func (*StaticEndpointsConfigurer) Configure ¶
func (c *StaticEndpointsConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type TLSInspectorConfigurer ¶
type TLSInspectorConfigurer struct { }
func (*TLSInspectorConfigurer) Configure ¶
func (c *TLSInspectorConfigurer) Configure(l *envoy_listener.Listener) error
type TcpProxyConfigurer ¶
type TcpProxyConfigurer struct { StatsName string // Clusters to forward traffic to. Clusters []envoy_common.Cluster UseMetadata bool }
func (*TcpProxyConfigurer) Configure ¶
func (c *TcpProxyConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type TimeoutConfigurer ¶
type TimeoutConfigurer struct { Conf *mesh_proto.Timeout_Conf Protocol core_mesh.Protocol }
func (*TimeoutConfigurer) Configure ¶
func (c *TimeoutConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type TracingConfigurer ¶
type TracingConfigurer struct {
Backend *mesh_proto.TracingBackend
}
func (*TracingConfigurer) Configure ¶
func (c *TracingConfigurer) Configure(filterChain *envoy_listener.FilterChain) error
type TransparentProxyingConfigurer ¶
type TransparentProxyingConfigurer struct { }
func (*TransparentProxyingConfigurer) Configure ¶
func (c *TransparentProxyingConfigurer) Configure(l *envoy_listener.Listener) error
Source Files
¶
- access_log_configurer.go
- configurer.go
- dns_configurer.go
- fault_injection_configurer.go
- filter_chain_match_configurer.go
- filter_chain_source_matcher.go
- grpc_stats_configurer.go
- http_access_log_configurer.go
- http_connection_manager_configurer.go
- http_inbound_routes_configurer.go
- http_outbound_route_configurer.go
- http_static_route_configurer.go
- inbound_listener_configurer.go
- kafka_configurer.go
- max_connect_attempts_configurer.go
- network_access_log_configurer.go
- network_rbac_configurer.go
- original_dst_forwarder_configurer.go
- outbound_listener_configurer.go
- rate_limit_configurer.go
- retry_configurer.go
- server_mtls_configurer.go
- static_endpoints_configurer.go
- tcp_proxy_configurer.go
- timeout_configurer.go
- tls_inspector_configurer.go
- tracing_configurer.go
- transparent_proxying_configurer.go
- util.go
Click to show internal directories.
Click to hide internal directories.