Documentation ¶
Index ¶
- func FilterStageComparison(a, b FilterStage) int
- func StagedFilterListContainsName(filters StagedHttpFilterList, filterName string) bool
- type EndpointPlugin
- type ExtendedFilterChain
- type FilterChainMutatorPlugin
- type FilterStage
- func AfterStage(wellKnown WellKnownFilterStage) FilterStage
- func BeforeStage(wellKnown WellKnownFilterStage) FilterStage
- func ConvertFilterStage(in *filters.FilterStage) *FilterStage
- func DuringStage(wellKnown WellKnownFilterStage) FilterStage
- func RelativeToStage(wellKnown WellKnownFilterStage, weight int) FilterStage
- type HttpConnectionManagerPlugin
- type HttpFilterPlugin
- type InitParams
- type ListenerPlugin
- type NetworkFilterPlugin
- type Params
- type Plugin
- type PluginRegistry
- type PluginRegistryFactory
- type ResourceGeneratorPlugin
- type RouteActionParams
- type RouteActionPlugin
- type RouteParams
- type RoutePlugin
- type StagedHttpFilter
- func MustNewStagedFilter(name string, config proto.Message, stage FilterStage) StagedHttpFilter
- func NewStagedFilter(name string, config proto.Message, stage FilterStage) (StagedHttpFilter, error)
- func NewStagedFilterWithConfig(name string, config proto.Message, stage FilterStage) (StagedHttpFilter, error)
- type StagedHttpFilterList
- type StagedNetworkFilter
- type StagedNetworkFilterList
- type TcpFilterChainPlugin
- type UpstreamPlugin
- type VirtualHostParams
- type VirtualHostPlugin
- type WeightedDestinationPlugin
- type WellKnownFilterStage
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FilterStageComparison ¶ added in v0.18.27
func FilterStageComparison(a, b FilterStage) int
FilterStageComparison helps implement the sort.Interface Less function for use in other implementations of sort.Interface returns -1 if less than, 0 if equal, 1 if greater than It is not sufficient to return a Less bool because calling functions need to know if equal or greater when Less is false
func StagedFilterListContainsName ¶ added in v1.8.0
func StagedFilterListContainsName(filters StagedHttpFilterList, filterName string) bool
StagedFilterListContainsName checks for a given named filter. This is not a check of the type url but rather the now mostly unused name
Types ¶
type EndpointPlugin ¶ added in v1.4.0
type EndpointPlugin interface { Plugin ProcessEndpoints(params Params, in *v1.Upstream, out *envoy_config_endpoint_v3.ClusterLoadAssignment) error }
EndpointPlugin modifies an Envoy ClusterLoadAssignment (formerly known as an Endpoint) which has been created for the input Gloo Upstream. This allows the ClusterLoadAssignments to be edited before being sent to Envoy via EDS. NOTE: If one wishes to also modify the corresponding envoy Cluster the above UpstreamPlugin interface should be used.
type ExtendedFilterChain ¶ added in v1.14.4
type ExtendedFilterChain struct { *envoy_config_listener_v3.FilterChain PassthroughCipherSuites []string TerminatingCipherSuites []string }
ExtendedFilterChain is a FilterChain with additional information This extra information may not end up on the final filter chain But may be used to compute other aspects of the listener that are pulled along with filter chain.
type FilterChainMutatorPlugin ¶ added in v1.14.4
type FilterChainMutatorPlugin interface { ListenerPlugin // TODO change this to Plugin, and update the places it's used ProcessFilterChain(params Params, in *v1.Listener, inFilters []*ExtendedFilterChain, out *envoy_config_listener_v3.Listener) error }
type FilterStage ¶
type FilterStage struct { RelativeTo WellKnownFilterStage Weight int }
func AfterStage ¶ added in v0.18.27
func AfterStage(wellKnown WellKnownFilterStage) FilterStage
func BeforeStage ¶ added in v0.18.27
func BeforeStage(wellKnown WellKnownFilterStage) FilterStage
func ConvertFilterStage ¶ added in v1.15.0
func ConvertFilterStage(in *filters.FilterStage) *FilterStage
ConvertFilterStage converts user-specified FilterStage options to the FilterStage representation used for translation.
func DuringStage ¶ added in v0.18.27
func DuringStage(wellKnown WellKnownFilterStage) FilterStage
func RelativeToStage ¶ added in v0.18.27
func RelativeToStage(wellKnown WellKnownFilterStage, weight int) FilterStage
type HttpConnectionManagerPlugin ¶ added in v1.9.25
type HttpConnectionManagerPlugin interface { Plugin ProcessHcmNetworkFilter(params Params, parentListener *v1.Listener, listener *v1.HttpListener, out *envoyhttp.HttpConnectionManager) error }
HttpConnectionManager Plugins
type HttpFilterPlugin ¶
type HttpFilterPlugin interface { Plugin HttpFilters(params Params, listener *v1.HttpListener) ([]StagedHttpFilter, error) }
type ListenerPlugin ¶
type NetworkFilterPlugin ¶ added in v1.15.0
type NetworkFilterPlugin interface { Plugin NetworkFiltersHTTP(params Params, listener *v1.HttpListener) ([]StagedNetworkFilter, error) NetworkFiltersTCP(params Params, listener *v1.TcpListener) ([]StagedNetworkFilter, error) }
type Params ¶
type Params struct { Ctx context.Context Snapshot *v1snap.ApiSnapshot Messages map[*core.ResourceRef][]string }
func (Params) CopyWithoutContext ¶ added in v1.12.39
CopyWithoutContext returns a version of params without ctx Mainly should be used for tests. Still copies pointer to snapshot.
type Plugin ¶
type Plugin interface { // Name returns a unique identifier for a plugin Name() string // Init is used to re-initialize plugins and is executed for each translation loop // This is done for 2 reasons: // 1. Each translation run relies on its own context. If a plugin spawns a go-routine // we need to be able to cancel that go-routine on the next translation // 2. Plugins are built with the assumption that they will be short lived, only for the // duration of a single translation loop Init(params InitParams) }
Plugin is a named unit of translation, used to produce Envoy configuration
type PluginRegistry ¶ added in v1.9.25
type PluginRegistry interface { GetPlugins() []Plugin GetListenerPlugins() []ListenerPlugin GetTcpFilterChainPlugins() []TcpFilterChainPlugin GetHttpFilterPlugins() []HttpFilterPlugin GetNetworkFilterPlugins() []NetworkFilterPlugin GetHttpConnectionManagerPlugins() []HttpConnectionManagerPlugin GetVirtualHostPlugins() []VirtualHostPlugin GetResourceGeneratorPlugins() []ResourceGeneratorPlugin GetUpstreamPlugins() []UpstreamPlugin GetEndpointPlugins() []EndpointPlugin GetRoutePlugins() []RoutePlugin GetRouteActionPlugins() []RouteActionPlugin GetWeightedDestinationPlugins() []WeightedDestinationPlugin }
A PluginRegistry is used to provide Plugins to relevant translators Historically, all plugins were passed around as an argument, and each translator would iterate over all plugins, and only apply the relevant ones. This interface enables translators to only know of the relevant plugins
type PluginRegistryFactory ¶ added in v1.9.25
type PluginRegistryFactory func(ctx context.Context) PluginRegistry
A PluginRegistryFactory generates a PluginRegistry It is executed each translation loop, ensuring we have up to date configuration of all plugins
type ResourceGeneratorPlugin ¶ added in v1.6.10
type ResourceGeneratorPlugin interface { Plugin GeneratedResources(params Params, inClusters []*envoy_config_cluster_v3.Cluster, inEndpoints []*envoy_config_endpoint_v3.ClusterLoadAssignment, inRouteConfigurations []*envoy_config_route_v3.RouteConfiguration, inListeners []*envoy_config_listener_v3.Listener, ) ([]*envoy_config_cluster_v3.Cluster, []*envoy_config_endpoint_v3.ClusterLoadAssignment, []*envoy_config_route_v3.RouteConfiguration, []*envoy_config_listener_v3.Listener, error) }
ResourceGeneratorPlugin modifies a set of xDS resources before they are persisted as a Snapshot
type RouteActionParams ¶ added in v0.18.32
type RouteActionParams struct { RouteParams Route *v1.Route }
type RouteActionPlugin ¶
type RouteActionPlugin interface { Plugin ProcessRouteAction(params RouteActionParams, inAction *v1.RouteAction, out *envoy_config_route_v3.RouteAction) error }
RouteActionPlugin modifies an Envoy RouteAction which has been created for the input Gloo Route. NOTE: any route action plugin can be implemented as a route plugin suggestion: if your plugin requires configuration from a RoutePlugin field, implement the RoutePlugin interface
type RouteParams ¶ added in v0.14.0
type RouteParams struct { VirtualHostParams VirtualHost *v1.VirtualHost }
type RoutePlugin ¶
type RoutePlugin interface { Plugin ProcessRoute(params RouteParams, in *v1.Route, out *envoy_config_route_v3.Route) error }
RoutePlugin modifies an Envoy Route which has been created for the input Gloo Route. This allows the routes in a RouteConfiguration to be edited before being send to Envoy via RDS.
type StagedHttpFilter ¶
type StagedHttpFilter struct { HttpFilter *envoyhttp.HttpFilter Stage FilterStage }
func MustNewStagedFilter ¶ added in v1.9.25
func MustNewStagedFilter(name string, config proto.Message, stage FilterStage) StagedHttpFilter
MustNewStagedFilter creates an instance of the named filter with the desired stage. Returns a filter even if an error occurred. Should rarely be used as disregarding an error is bad practice but does make appending easier. If not directly appending consider using NewStagedFilter instead of this function.
func NewStagedFilter ¶ added in v0.11.1
func NewStagedFilter(name string, config proto.Message, stage FilterStage) (StagedHttpFilter, error)
NewStagedFilter creates an instance of the named filter with the desired stage. Errors if the config is nil or we cannot determine the type of the config. Config type determination may fail if the config is both unknown and has no fields.
func NewStagedFilterWithConfig ¶ added in v0.11.1
func NewStagedFilterWithConfig(name string, config proto.Message, stage FilterStage) (StagedHttpFilter, error)
NewStagedFilterWithConfig creates an instance of the named filter with the desired stage. Deprecated: config is now always needed and so NewStagedFilter should always be used.
type StagedHttpFilterList ¶ added in v0.18.27
type StagedHttpFilterList []StagedHttpFilter
func (StagedHttpFilterList) Len ¶ added in v0.18.27
func (s StagedHttpFilterList) Len() int
func (StagedHttpFilterList) Less ¶ added in v0.18.27
func (s StagedHttpFilterList) Less(i, j int) bool
filters by Relative Stage, Weighting, Name, Config Type-Url, Config Value, and (to ensure stability) index. The assumption is that if two filters are in the same stage, their order doesn't matter, and we just need to make sure it is stable.
func (StagedHttpFilterList) Swap ¶ added in v0.18.27
func (s StagedHttpFilterList) Swap(i, j int)
type StagedNetworkFilter ¶ added in v1.9.25
type StagedNetworkFilter struct { NetworkFilter *envoy_config_listener_v3.Filter Stage FilterStage }
type StagedNetworkFilterList ¶ added in v1.9.25
type StagedNetworkFilterList []StagedNetworkFilter
func (StagedNetworkFilterList) Len ¶ added in v1.9.25
func (s StagedNetworkFilterList) Len() int
func (StagedNetworkFilterList) Less ¶ added in v1.9.25
func (s StagedNetworkFilterList) Less(i, j int) bool
filters by Relative Stage, Weighting, Name, and (to ensure stability) index
func (StagedNetworkFilterList) Swap ¶ added in v1.9.25
func (s StagedNetworkFilterList) Swap(i, j int)
type TcpFilterChainPlugin ¶ added in v1.9.25
type TcpFilterChainPlugin interface { Plugin CreateTcpFilterChains(params Params, parentListener *v1.Listener, in *v1.TcpListener) ([]*envoy_config_listener_v3.FilterChain, error) }
type UpstreamPlugin ¶
type UpstreamPlugin interface { Plugin ProcessUpstream(params Params, in *v1.Upstream, out *envoy_config_cluster_v3.Cluster) error }
UpstreamPlugin modifies the Envoy Cluster which has been created for the input Gloo Upstream. This allows the Cluster to be edited before being sent to Envoy via CDS
type VirtualHostParams ¶ added in v0.15.0
type VirtualHostPlugin ¶
type VirtualHostPlugin interface { Plugin ProcessVirtualHost(params VirtualHostParams, in *v1.VirtualHost, out *envoy_config_route_v3.VirtualHost) error }
type WeightedDestinationPlugin ¶ added in v0.18.7
type WeightedDestinationPlugin interface { Plugin ProcessWeightedDestination( params RouteParams, in *v1.WeightedDestination, out *envoy_config_route_v3.WeightedCluster_ClusterWeight, ) error }
type WellKnownFilterStage ¶ added in v0.18.27
type WellKnownFilterStage int
WellKnownFilterStages are represented by an integer that reflects their relative ordering
const ( FaultStage WellKnownFilterStage = iota // Fault injection // First Filter Stage CorsStage // Cors stage WafStage // Web application firewall stage AuthNStage // Authentication stage AuthZStage // Authorization stage RateLimitStage // Rate limiting stage AcceptedStage // Request passed all the checks and will be forwarded upstream OutAuthStage // Add auth for the upstream (i.e. aws λ) RouteStage // Request is going to upstream // Last Filter Stage )
The set of WellKnownFilterStages, whose order corresponds to the order used to sort filters If new well known filter stages are added, they should be inserted in a position corresponding to their order
Directories ¶
Path | Synopsis |
---|---|
mocks
Package mock_consul is a generated GoMock package.
|
Package mock_consul is a generated GoMock package. |
Package enterprise_warning creates the EnterpriseWarning plugin.
|
Package enterprise_warning creates the EnterpriseWarning plugin. |
internal
|
|
mocks
Package mock_kubernetes is a generated GoMock package.
|
Package mock_kubernetes is a generated GoMock package. |
Package registry is responsible for managing
|
Package registry is responsible for managing |