Documentation ¶
Index ¶
- Constants
- func AnyToMessage(a *pany.Any) (proto.Message, error)
- func DestinationUpstreams(snap *v1.ApiSnapshot, in *v1.RouteAction) ([]core.ResourceRef, error)
- func EnvoyEndpoint(address string, port uint32) *envoyendpoint.Endpoint
- func EnvoySingleEndpointLoadAssignment(out *envoyapi.Cluster, address string, port uint32)
- func IsDestinationNotFoundErr(err error) bool
- func MarkHeaders(ctx context.Context, snap *v1.ApiSnapshot, in *v1.Route, out *envoyroute.Route, ...) error
- func MarkPerFilterConfig(ctx context.Context, snap *v1.ApiSnapshot, in *v1.Route, out *envoyroute.Route, ...) error
- func MessageToAny(msg proto.Message) (*pany.Any, error)
- func MustAnyToMessage(a *pany.Any) proto.Message
- func MustMessageToAny(msg proto.Message) *pany.Any
- func SetExtenstionProtocolOptions(out *envoyapi.Cluster, filterName string, protoext proto.Message) error
- func SetRoutePerFilterConfig(out *envoyroute.Route, filterName string, protoext proto.Message) error
- func SetVhostPerFilterConfig(out *envoyroute.VirtualHost, filterName string, protoext proto.Message) error
- func SetWeightedClusterPerFilterConfig(out *envoyroute.WeightedCluster_ClusterWeight, filterName string, ...) error
- type DestinationNotFoundError
- type HeadersToAddFunc
- type PerFilterConfigFunc
Constants ¶
View Source
const TlsTransportSocket = "envoy.transport_sockets.tls"
Variables ¶
This section is empty.
Functions ¶
func DestinationUpstreams ¶
func DestinationUpstreams(snap *v1.ApiSnapshot, in *v1.RouteAction) ([]core.ResourceRef, error)
func EnvoyEndpoint ¶
func EnvoyEndpoint(address string, port uint32) *envoyendpoint.Endpoint
func IsDestinationNotFoundErr ¶ added in v0.20.2
func MarkHeaders ¶
func MarkHeaders(ctx context.Context, snap *v1.ApiSnapshot, in *v1.Route, out *envoyroute.Route, headers HeadersToAddFunc) error
Allows you add extra headers for specific destination. The provided callback will be called for all the destinations on the route. Any headers returned will be added to requests going to that destination
func MarkPerFilterConfig ¶
func MarkPerFilterConfig(ctx context.Context, snap *v1.ApiSnapshot, in *v1.Route, out *envoyroute.Route, filterName string, perFilterConfig PerFilterConfigFunc) error
call this from
func SetExtenstionProtocolOptions ¶ added in v0.11.1
func SetRoutePerFilterConfig ¶ added in v0.11.1
func SetVhostPerFilterConfig ¶ added in v0.11.1
func SetVhostPerFilterConfig(out *envoyroute.VirtualHost, filterName string, protoext proto.Message) error
func SetWeightedClusterPerFilterConfig ¶ added in v0.11.1
func SetWeightedClusterPerFilterConfig(out *envoyroute.WeightedCluster_ClusterWeight, filterName string, protoext proto.Message) error
Types ¶
type DestinationNotFoundError ¶ added in v0.20.2
type DestinationNotFoundError struct { Ref core.ResourceRef ResourceType resources.Resource }
func NewDestinationNotFoundErr ¶ added in v0.20.2
func NewDestinationNotFoundErr(ref core.ResourceRef, resourceType resources.Resource) *DestinationNotFoundError
func NewUpstreamGroupNotFoundErr ¶ added in v0.20.2
func NewUpstreamGroupNotFoundErr(ref core.ResourceRef) *DestinationNotFoundError
func NewUpstreamNotFoundErr ¶ added in v0.20.2
func NewUpstreamNotFoundErr(ref core.ResourceRef) *DestinationNotFoundError
func (*DestinationNotFoundError) Error ¶ added in v0.20.2
func (e *DestinationNotFoundError) Error() string
type HeadersToAddFunc ¶
type HeadersToAddFunc func(spec *v1.Destination) ([]*envoycore.HeaderValueOption, error)
type PerFilterConfigFunc ¶
type PerFilterConfigFunc func(spec *v1.Destination) (proto.Message, error)
Return Per-Filter config for destinations, we put them on the Route (single dest) or WeightedCluster (multi dest)
Click to show internal directories.
Click to hide internal directories.