var ( // SchemeGroupVersion is the identifier for the API which includes the name // of the group and the version of the API. SchemeGroupVersion = schema.GroupVersion{ Group: policy.GroupName, Version: "v1alpha1", } // SchemeBuilder collects functions that add things to a scheme. It's to // allow code to compile without explicitly referencing generated types. // You should declare one in each package that will have generated deep // copy or conversion functions. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme applies all the stored functions to the scheme. A non-nil error // indicates that one function failed and the attempt was abandoned. AddToScheme = SchemeBuilder.AddToScheme )
func Kind(kind string) schema.GroupKind
Kind takes an unqualified kind and returns back a Group qualified GroupKind
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
type AuthorizationPolicy struct { // TypeMeta is the metadata for the resource, like kind and apiversion metav1.TypeMeta `json:",inline"` // ObjectMeta contains the metadata for the particular object, including // things like... // - name // - namespace // - self link // - labels // - ... etc ... metav1.ObjectMeta `json:"metadata,omitempty"` // Spec is the custom resource spec Spec AuthorizationPolicySpec `json:"spec,"` }
func (in *AuthorizationPolicy) DeepCopy() *AuthorizationPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationPolicy.
func (in *AuthorizationPolicy) DeepCopyInto(out *AuthorizationPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AuthorizationPolicy) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
AuthorizationPolicyList is a list of AuthorizationPolicy resources.
type AuthorizationPolicyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []AuthorizationPolicy `json:"items"` }
func (in *AuthorizationPolicyList) DeepCopy() *AuthorizationPolicyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationPolicyList.
func (in *AuthorizationPolicyList) DeepCopyInto(out *AuthorizationPolicyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AuthorizationPolicyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
AuthorizationPolicySpec specifies a, AuthorizationPolicySpec resource.
type AuthorizationPolicySpec struct { // TargetRef references a resource to which the authorization policy applies. TargetRef gatewayapiv1alpha2.PolicyTargetReference `json:"targetRef,omitempty"` // RequiredAuthenticationRefs enumerates a set of required authentications RequiredAuthenticationRefs []gatewayapiv1alpha2.PolicyTargetReference `json:"requiredAuthenticationRefs,omitempty"` }
func (in *AuthorizationPolicySpec) DeepCopy() *AuthorizationPolicySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationPolicySpec.
func (in *AuthorizationPolicySpec) DeepCopyInto(out *AuthorizationPolicySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPHeader represents an HTTP Header name and value as defined by RFC 7230.
type HTTPHeader struct { // Name is the name of the HTTP Header to be matched. Name matching MUST be // case insensitive. (See https://tools.ietf.org/html/rfc7230#section-3.2). // // If multiple entries specify equivalent header names, the first entry with // an equivalent name MUST be considered for a match. Subsequent entries // with an equivalent header name MUST be ignored. Due to the // case-insensitivity of header names, "foo" and "Foo" are considered // equivalent. Name HTTPHeaderName `json:"name"` // Value is the value of HTTP Header to be matched. // // +kubebuilder:validation:MinLength=1 // +kubebuilder:validation:MaxLength=4096 Value string `json:"value"` }
func (in *HTTPHeader) DeepCopy() *HTTPHeader
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPHeader.
func (in *HTTPHeader) DeepCopyInto(out *HTTPHeader)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPHeaderMatch describes how to select a HTTP route by matching HTTP request headers.
type HTTPHeaderMatch struct { // Type specifies how to match against the value of the header. // // Support: Core (Exact) // // Support: Custom (RegularExpression) // // Since RegularExpression HeaderMatchType has custom conformance, // implementations can support POSIX, PCRE or any other dialects of regular // expressions. Please read the implementation's documentation to determine // the supported dialect. // // +optional // +kubebuilder:default=Exact Type *HeaderMatchType `json:"type,omitempty"` // Name is the name of the HTTP Header to be matched. Name matching MUST be // case insensitive. (See https://tools.ietf.org/html/rfc7230#section-3.2). // // If multiple entries specify equivalent header names, only the first // entry with an equivalent name MUST be considered for a match. Subsequent // entries with an equivalent header name MUST be ignored. Due to the // case-insensitivity of header names, "foo" and "Foo" are considered // equivalent. // // When a header is repeated in an HTTP request, it is // implementation-specific behavior as to how this is represented. // Generally, proxies should follow the guidance from the RFC: // https://www.rfc-editor.org/rfc/rfc7230.html#section-3.2.2 regarding // processing a repeated header, with special handling for "Set-Cookie". Name HTTPHeaderName `json:"name"` // Value is the value of HTTP Header to be matched. // // +kubebuilder:validation:MinLength=1 // +kubebuilder:validation:MaxLength=4096 Value string `json:"value"` }
func (in *HTTPHeaderMatch) DeepCopy() *HTTPHeaderMatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPHeaderMatch.
func (in *HTTPHeaderMatch) DeepCopyInto(out *HTTPHeaderMatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPHeaderName is the name of an HTTP header.
Valid values include:
* "Authorization" * "Set-Cookie"
Invalid values include:
+kubebuilder:validation:MinLength=1 +kubebuilder:validation:MaxLength=256 +kubebuilder:validation:Pattern=`^[A-Za-z0-9!#$%&'*+\-.^_\x60|~]+$`
type HTTPHeaderName string
HTTPMethod describes how to select a HTTP route by matching the HTTP method as defined by [RFC 7231](https://datatracker.ietf.org/doc/html/rfc7231#section-4) and [RFC 5789](https://datatracker.ietf.org/doc/html/rfc5789#section-2). The value is expected in upper case.
Note that values may be added to this enum, implementations must ensure that unknown values will not cause a crash.
Unknown values here must result in the implementation setting the Attached Condition for the Route to `status: False`, with a Reason of `UnsupportedValue`.
+kubebuilder:validation:Enum=GET;HEAD;POST;PUT;DELETE;CONNECT;OPTIONS;TRACE;PATCH
type HTTPMethod string
const ( HTTPMethodGet HTTPMethod = "GET" HTTPMethodHead HTTPMethod = "HEAD" HTTPMethodPost HTTPMethod = "POST" HTTPMethodPut HTTPMethod = "PUT" HTTPMethodDelete HTTPMethod = "DELETE" HTTPMethodConnect HTTPMethod = "CONNECT" HTTPMethodOptions HTTPMethod = "OPTIONS" HTTPMethodTrace HTTPMethod = "TRACE" HTTPMethodPatch HTTPMethod = "PATCH" )
HTTPPathMatch describes how to select a HTTP route by matching the HTTP request path.
type HTTPPathMatch struct { // Type specifies how to match against the path Value. // // Support: Core (Exact, PathPrefix) // // Support: Custom (RegularExpression) // // +optional // +kubebuilder:default=PathPrefix Type *PathMatchType `json:"type,omitempty"` // Value of the HTTP path to match against. // // +optional // +kubebuilder:default="/" // +kubebuilder:validation:MaxLength=1024 Value *string `json:"value,omitempty"` }
func (in *HTTPPathMatch) DeepCopy() *HTTPPathMatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPPathMatch.
func (in *HTTPPathMatch) DeepCopyInto(out *HTTPPathMatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPPathModifier defines configuration for path modifiers. <gateway:experimental>
type HTTPPathModifier struct { // Type defines the type of path modifier. Additional types may be // added in a future release of the API. // // Note that values may be added to this enum, implementations // must ensure that unknown values will not cause a crash. // // Unknown values here must result in the implementation setting the // Attached Condition for the Route to `status: False`, with a // Reason of `UnsupportedValue`. // // <gateway:experimental> // +kubebuilder:validation:Enum=ReplaceFullPath;ReplacePrefixMatch Type HTTPPathModifierType `json:"type"` // ReplaceFullPath specifies the value with which to replace the full path // of a request during a rewrite or redirect. // // <gateway:experimental> // +kubebuilder:validation:MaxLength=1024 // +optional ReplaceFullPath *string `json:"replaceFullPath,omitempty"` // ReplacePrefixMatch specifies the value with which to replace the prefix // match of a request during a rewrite or redirect. For example, a request // to "/foo/bar" with a prefix match of "/foo" would be modified to "/bar". // // Note that this matches the behavior of the PathPrefix match type. This // matches full path elements. A path element refers to the list of labels // in the path split by the `/` separator. When specified, a trailing `/` is // ignored. For example, the paths `/abc`, `/abc/`, and `/abc/def` would all // match the prefix `/abc`, but the path `/abcd` would not. // // <gateway:experimental> // +kubebuilder:validation:MaxLength=1024 // +optional ReplacePrefixMatch *string `json:"replacePrefixMatch,omitempty"` }
func (in *HTTPPathModifier) DeepCopy() *HTTPPathModifier
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPPathModifier.
func (in *HTTPPathModifier) DeepCopyInto(out *HTTPPathModifier)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPPathModifierType defines the type of path redirect or rewrite.
type HTTPPathModifierType string
HTTPQueryParamMatch describes how to select a HTTP route by matching HTTP query parameters.
type HTTPQueryParamMatch struct { // Type specifies how to match against the value of the query parameter. // // Support: Extended (Exact) // // Support: Custom (RegularExpression) // // Since RegularExpression QueryParamMatchType has custom conformance, // implementations can support POSIX, PCRE or any other dialects of regular // expressions. Please read the implementation's documentation to determine // the supported dialect. // // +optional // +kubebuilder:default=Exact Type *QueryParamMatchType `json:"type,omitempty"` // Name is the name of the HTTP query param to be matched. This must be an // exact string match. (See // https://tools.ietf.org/html/rfc7230#section-2.7.3). // // If multiple entries specify equivalent query param names, only the first // entry with an equivalent name MUST be considered for a match. Subsequent // entries with an equivalent query param name MUST be ignored. // // +kubebuilder:validation:MinLength=1 // +kubebuilder:validation:MaxLength=256 Name string `json:"name"` // Value is the value of HTTP query param to be matched. // // +kubebuilder:validation:MinLength=1 // +kubebuilder:validation:MaxLength=1024 Value string `json:"value"` }
func (in *HTTPQueryParamMatch) DeepCopy() *HTTPQueryParamMatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPQueryParamMatch.
func (in *HTTPQueryParamMatch) DeepCopyInto(out *HTTPQueryParamMatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRequestHeaderFilter defines configuration for the RequestHeaderModifier filter.
type HTTPRequestHeaderFilter struct { // Set overwrites the request with the given header (name, value) // before the action. // // Input: // GET /foo HTTP/1.1 // my-header: foo // // Config: // set: // - name: "my-header" // value: "bar" // // Output: // GET /foo HTTP/1.1 // my-header: bar // // +optional // +listType=map // +listMapKey=name // +kubebuilder:validation:MaxItems=16 Set []HTTPHeader `json:"set,omitempty"` // Add adds the given header(s) (name, value) to the request // before the action. It appends to any existing values associated // with the header name. // // Input: // GET /foo HTTP/1.1 // my-header: foo // // Config: // add: // - name: "my-header" // value: "bar" // // Output: // GET /foo HTTP/1.1 // my-header: foo // my-header: bar // // +optional // +listType=map // +listMapKey=name // +kubebuilder:validation:MaxItems=16 Add []HTTPHeader `json:"add,omitempty"` // Remove the given header(s) from the HTTP request before the action. The // value of Remove is a list of HTTP header names. Note that the header // names are case-insensitive (see // https://datatracker.ietf.org/doc/html/rfc2616#section-4.2). // // Input: // GET /foo HTTP/1.1 // my-header1: foo // my-header2: bar // my-header3: baz // // Config: // remove: ["my-header1", "my-header3"] // // Output: // GET /foo HTTP/1.1 // my-header2: bar // // +optional // +kubebuilder:validation:MaxItems=16 Remove []string `json:"remove,omitempty"` }
func (in *HTTPRequestHeaderFilter) DeepCopy() *HTTPRequestHeaderFilter
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRequestHeaderFilter.
func (in *HTTPRequestHeaderFilter) DeepCopyInto(out *HTTPRequestHeaderFilter)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRequestRedirect defines a filter that redirects a request. This filter MUST NOT be used on the same Route rule as a HTTPURLRewrite filter.
type HTTPRequestRedirectFilter struct { // Scheme is the scheme to be used in the value of the `Location` // header in the response. // When empty, the scheme of the request is used. // // Support: Extended // // Note that values may be added to this enum, implementations // must ensure that unknown values will not cause a crash. // // Unknown values here must result in the implementation setting the // Attached Condition for the Route to `status: False`, with a // Reason of `UnsupportedValue`. // // +optional // +kubebuilder:validation:Enum=http;https Scheme *string `json:"scheme,omitempty"` // Hostname is the hostname to be used in the value of the `Location` // header in the response. // When empty, the hostname of the request is used. // // Support: Core // // +optional Hostname *gatewayapiv1alpha2.PreciseHostname `json:"hostname,omitempty"` // Path defines parameters used to modify the path of the incoming request. // The modified path is then used to construct the `Location` header. When // empty, the request path is used as-is. // // Support: Extended // // <gateway:experimental> // +optional Path *HTTPPathModifier `json:"path,omitempty"` // Port is the port to be used in the value of the `Location` // header in the response. // When empty, port (if specified) of the request is used. // // Support: Extended // // +optional Port *gatewayapiv1alpha2.PortNumber `json:"port,omitempty"` // StatusCode is the HTTP status code to be used in response. // // Support: Core // // Note that values may be added to this enum, implementations // must ensure that unknown values will not cause a crash. // // Unknown values here must result in the implementation setting the // Attached Condition for the Route to `status: False`, with a // Reason of `UnsupportedValue`. // // +optional // +kubebuilder:default=302 // +kubebuilder:validation:Enum=301;302 StatusCode *int `json:"statusCode,omitempty"` }
func (in *HTTPRequestRedirectFilter) DeepCopy() *HTTPRequestRedirectFilter
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRequestRedirectFilter.
func (in *HTTPRequestRedirectFilter) DeepCopyInto(out *HTTPRequestRedirectFilter)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRoute provides a way to route HTTP requests. This includes the capability to match requests by hostname, path, header, or query param. Filters can be used to specify additional processing steps. Backends specify where matching requests should be routed.
type HTTPRoute struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // Spec defines the desired state of HTTPRoute. Spec HTTPRouteSpec `json:"spec"` // Status defines the current state of HTTPRoute. Status HTTPRouteStatus `json:"status,omitempty"` }
func (in *HTTPRoute) DeepCopy() *HTTPRoute
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRoute.
func (in *HTTPRoute) DeepCopyInto(out *HTTPRoute)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *HTTPRoute) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
HTTPRouteFilter defines processing steps that must be completed during the request or response lifecycle. HTTPRouteFilters are meant as an extension point to express processing that may be done in Gateway implementations. Some examples include request or response modification, implementing authentication strategies, rate-limiting, and traffic shaping. API guarantee/conformance is defined based on the type of the filter.
type HTTPRouteFilter struct { // Type identifies the type of filter to apply. As with other API fields, // types are classified into three conformance levels: // // - Core: Filter types and their corresponding configuration defined by // "Support: Core" in this package, e.g. "RequestHeaderModifier". All // implementations must support core filters. // // - Extended: Filter types and their corresponding configuration defined by // "Support: Extended" in this package, e.g. "RequestMirror". Implementers // are encouraged to support extended filters. // // - Custom: Filters that are defined and supported by specific vendors. // In the future, filters showing convergence in behavior across multiple // implementations will be considered for inclusion in extended or core // conformance levels. Filter-specific configuration for such filters // is specified using the ExtensionRef field. `Type` should be set to // "ExtensionRef" for custom filters. // // Implementers are encouraged to define custom implementation types to // extend the core API with implementation-specific behavior. // // If a reference to a custom filter type cannot be resolved, the filter // MUST NOT be skipped. Instead, requests that would have been processed by // that filter MUST receive a HTTP error response. // // Note that values may be added to this enum, implementations // must ensure that unknown values will not cause a crash. // // Unknown values here must result in the implementation setting the // Attached Condition for the Route to `status: False`, with a // Reason of `UnsupportedValue`. // // +unionDiscriminator // +kubebuilder:validation:Enum=RequestHeaderModifier;RequestMirror;RequestRedirect;ExtensionRef // <gateway:experimental:validation:Enum=RequestHeaderModifier;RequestMirror;RequestRedirect;URLRewrite;ExtensionRef> Type HTTPRouteFilterType `json:"type"` // RequestHeaderModifier defines a schema for a filter that modifies request // headers. // // Support: Core // // +optional RequestHeaderModifier *HTTPRequestHeaderFilter `json:"requestHeaderModifier,omitempty"` // RequestRedirect defines a schema for a filter that responds to the // request with an HTTP redirection. // // Support: Core // // +optional RequestRedirect *HTTPRequestRedirectFilter `json:"requestRedirect,omitempty"` }
func (in *HTTPRouteFilter) DeepCopy() *HTTPRouteFilter
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteFilter.
func (in *HTTPRouteFilter) DeepCopyInto(out *HTTPRouteFilter)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRouteFilterType identifies a type of HTTPRoute filter.
type HTTPRouteFilterType string
const ( // HTTPRouteFilterRequestHeaderModifier can be used to add or remove an HTTP // header from an HTTP request before it is sent to the upstream target. // // Support in HTTPRouteRule: Core // // Support in HTTPBackendRef: Extended HTTPRouteFilterRequestHeaderModifier HTTPRouteFilterType = "RequestHeaderModifier" // HTTPRouteFilterRequestRedirect can be used to redirect a request to // another location. This filter can also be used for HTTP to HTTPS // redirects. This may not be used on the same Route rule or BackendRef as a // URLRewrite filter. // // Support in HTTPRouteRule: Core // // Support in HTTPBackendRef: Extended HTTPRouteFilterRequestRedirect HTTPRouteFilterType = "RequestRedirect" )
HTTPRouteList contains a list of HTTPRoute.
type HTTPRouteList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []HTTPRoute `json:"items"` }
func (in *HTTPRouteList) DeepCopy() *HTTPRouteList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteList.
func (in *HTTPRouteList) DeepCopyInto(out *HTTPRouteList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *HTTPRouteList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
HTTPRouteMatch defines the predicate used to match requests to a given action. Multiple match types are ANDed together, i.e. the match will evaluate to true only if all conditions are satisfied.
For example, the match below will match a HTTP request only if its path starts with `/foo` AND it contains the `version: v1` header:
``` match:
path: value: "/foo" headers: - name: "version" value "v1"
```
type HTTPRouteMatch struct { // Path specifies a HTTP request path matcher. If this field is not // specified, a default prefix match on the "/" path is provided. // // +optional // +kubebuilder:default={type: "PathPrefix", value: "/"} Path *HTTPPathMatch `json:"path,omitempty"` // Headers specifies HTTP request header matchers. Multiple match values are // ANDed together, meaning, a request must match all the specified headers // to select the route. // // +listType=map // +listMapKey=name // +optional // +kubebuilder:validation:MaxItems=16 Headers []HTTPHeaderMatch `json:"headers,omitempty"` // QueryParams specifies HTTP query parameter matchers. Multiple match // values are ANDed together, meaning, a request must match all the // specified query parameters to select the route. // // +listType=map // +listMapKey=name // +optional // +kubebuilder:validation:MaxItems=16 QueryParams []HTTPQueryParamMatch `json:"queryParams,omitempty"` // Method specifies HTTP method matcher. // When specified, this route will be matched only if the request has the // specified method. // // Support: Extended // // +optional Method *HTTPMethod `json:"method,omitempty"` }
func (in *HTTPRouteMatch) DeepCopy() *HTTPRouteMatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteMatch.
func (in *HTTPRouteMatch) DeepCopyInto(out *HTTPRouteMatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRouteRule defines semantics for matching an HTTP request based on conditions (matches), processing it (filters), and forwarding the request to an API object (backendRefs).
type HTTPRouteRule struct { // Matches define conditions used for matching the rule against incoming // HTTP requests. Each match is independent, i.e. this rule will be matched // if **any** one of the matches is satisfied. // // For example, take the following matches configuration: // // ``` // matches: // - path: // value: "/foo" // headers: // - name: "version" // value: "v2" // - path: // value: "/v2/foo" // ``` // // For a request to match against this rule, a request must satisfy // EITHER of the two conditions: // // - path prefixed with `/foo` AND contains the header `version: v2` // - path prefix of `/v2/foo` // // See the documentation for HTTPRouteMatch on how to specify multiple // match conditions that should be ANDed together. // // If no matches are specified, the default is a prefix // path match on "/", which has the effect of matching every // HTTP request. // // Proxy or Load Balancer routing configuration generated from HTTPRoutes // MUST prioritize rules based on the following criteria, continuing on // ties. Precedence must be given to the Rule with the largest number // of: // // * Characters in a matching non-wildcard hostname. // * Characters in a matching hostname. // * Characters in a matching path. // * Header matches. // * Query param matches. // // If ties still exist across multiple Routes, matching precedence MUST be // determined in order of the following criteria, continuing on ties: // // * The oldest Route based on creation timestamp. // * The Route appearing first in alphabetical order by // "{namespace}/{name}". // // If ties still exist within the Route that has been given precedence, // matching precedence MUST be granted to the first matching rule meeting // the above criteria. // // When no rules matching a request have been successfully attached to the // parent a request is coming from, a HTTP 404 status code MUST be returned. // // +optional // +kubebuilder:validation:MaxItems=8 // +kubebuilder:default={{path:{ type: "PathPrefix", value: "/"}}} Matches []HTTPRouteMatch `json:"matches,omitempty"` // Filters define the filters that are applied to requests that match // this rule. // // The effects of ordering of multiple behaviors are currently unspecified. // This can change in the future based on feedback during the alpha stage. // // Conformance-levels at this level are defined based on the type of filter: // // - ALL core filters MUST be supported by all implementations. // - Implementers are encouraged to support extended filters. // - Implementation-specific custom filters have no API guarantees across // implementations. // // Specifying a core filter multiple times has unspecified or custom // conformance. // // All filters are expected to be compatible with each other except for the // URLRewrite and RequestRedirect filters, which may not be combined. If an // implementation can not support other combinations of filters, they must clearly // document that limitation. In all cases where incompatible or unsupported // filters are specified, implementations MUST add a warning condition to status. // // Support: Core // // +optional // +kubebuilder:validation:MaxItems=16 Filters []HTTPRouteFilter `json:"filters,omitempty"` }
func (in *HTTPRouteRule) DeepCopy() *HTTPRouteRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteRule.
func (in *HTTPRouteRule) DeepCopyInto(out *HTTPRouteRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRouteSpec defines the desired state of HTTPRoute
type HTTPRouteSpec struct { gatewayapiv1alpha2.CommonRouteSpec `json:",inline"` // Hostnames defines a set of hostname that should match against the HTTP // Host header to select a HTTPRoute to process the request. This matches // the RFC 1123 definition of a hostname with 2 notable exceptions: // // 1. IPs are not allowed. // 2. A hostname may be prefixed with a wildcard label (`*.`). The wildcard // label must appear by itself as the first label. // // If a hostname is specified by both the Listener and HTTPRoute, there // must be at least one intersecting hostname for the HTTPRoute to be // attached to the Listener. For example: // // * A Listener with `test.example.com` as the hostname matches HTTPRoutes // that have either not specified any hostnames, or have specified at // least one of `test.example.com` or `*.example.com`. // * A Listener with `*.example.com` as the hostname matches HTTPRoutes // that have either not specified any hostnames or have specified at least // one hostname that matches the Listener hostname. For example, // `*.example.com`, `test.example.com`, and `foo.test.example.com` would // all match. On the other hand, `example.com` and `test.example.net` would // not match. // // Hostnames that are prefixed with a wildcard label (`*.`) are interpreted // as a suffix match. That means that a match for `*.example.com` would match // both `test.example.com`, and `foo.test.example.com`, but not `example.com`. // // If both the Listener and HTTPRoute have specified hostnames, any // HTTPRoute hostnames that do not match the Listener hostname MUST be // ignored. For example, if a Listener specified `*.example.com`, and the // HTTPRoute specified `test.example.com` and `test.example.net`, // `test.example.net` must not be considered for a match. // // If both the Listener and HTTPRoute have specified hostnames, and none // match with the criteria above, then the HTTPRoute is not accepted. The // implementation must raise an 'Accepted' Condition with a status of // `False` in the corresponding RouteParentStatus. // // Support: Core // // +optional // +kubebuilder:validation:MaxItems=16 Hostnames []gatewayapiv1alpha2.Hostname `json:"hostnames,omitempty"` // Rules are a list of HTTP matchers, filters and actions. // // +optional // +kubebuilder:validation:MaxItems=16 // +kubebuilder:default={{matches: {{path: {type: "PathPrefix", value: "/"}}}}} Rules []HTTPRouteRule `json:"rules,omitempty"` }
func (in *HTTPRouteSpec) DeepCopy() *HTTPRouteSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteSpec.
func (in *HTTPRouteSpec) DeepCopyInto(out *HTTPRouteSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HTTPRouteStatus defines the observed state of HTTPRoute.
type HTTPRouteStatus struct { gatewayapiv1alpha2.RouteStatus `json:",inline"` }
func (in *HTTPRouteStatus) DeepCopy() *HTTPRouteStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteStatus.
func (in *HTTPRouteStatus) DeepCopyInto(out *HTTPRouteStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
HeaderMatchType specifies the semantics of how HTTP header values should be compared. Valid HeaderMatchType values are:
* "Exact" * "RegularExpression"
Note that values may be added to this enum, implementations must ensure that unknown values will not cause a crash.
Unknown values here must result in the implementation setting the Attached Condition for the Route to `status: False`, with a Reason of `UnsupportedValue`.
+kubebuilder:validation:Enum=Exact;RegularExpression
type HeaderMatchType string
HeaderMatchType constants.
const ( HeaderMatchExact HeaderMatchType = "Exact" HeaderMatchRegularExpression HeaderMatchType = "RegularExpression" )
MeshTLSAuthentication defines a list of authenticated client IDs to be referenced by an `AuthenticationPolicy`
type MeshTLSAuthentication struct { // TypeMeta is the metadata for the resource, like kind and apiversion metav1.TypeMeta `json:",inline"` // ObjectMeta contains the metadata for the particular object, including // things like... // - name // - namespace // - self link // - labels // - ... etc ... metav1.ObjectMeta `json:"metadata,omitempty"` // Spec is the custom resource spec Spec MeshTLSAuthenticationSpec `json:"spec"` }
func (in *MeshTLSAuthentication) DeepCopy() *MeshTLSAuthentication
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MeshTLSAuthentication.
func (in *MeshTLSAuthentication) DeepCopyInto(out *MeshTLSAuthentication)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MeshTLSAuthentication) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
MeshTLSAuthenticationList is a list of MeshTLSAuthentication resources.
type MeshTLSAuthenticationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []MeshTLSAuthentication `json:"items"` }
func (in *MeshTLSAuthenticationList) DeepCopy() *MeshTLSAuthenticationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MeshTLSAuthenticationList.
func (in *MeshTLSAuthenticationList) DeepCopyInto(out *MeshTLSAuthenticationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MeshTLSAuthenticationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type MeshTLSAuthenticationSpec struct { Identities []string `json:"identities,omitempty"` IdentityRefs []gatewayapiv1alpha2.PolicyTargetReference `json:"identityRefs,omitempty"` }
func (in *MeshTLSAuthenticationSpec) DeepCopy() *MeshTLSAuthenticationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MeshTLSAuthenticationSpec.
func (in *MeshTLSAuthenticationSpec) DeepCopyInto(out *MeshTLSAuthenticationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Network struct { Cidr string `json:"cidr,omitempty"` Except []string `json:"except,omitempty"` }
func (in *Network) DeepCopy() *Network
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Network.
func (in *Network) DeepCopyInto(out *Network)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
NetworkAuthentication defines a list of authenticated client networks to be referenced by an `AuthenticationPolicy`.
type NetworkAuthentication struct { // TypeMeta is the metadata for the resource, like kind and apiversion metav1.TypeMeta `json:",inline"` // ObjectMeta contains the metadata for the particular object, including // things like... // - name // - namespace // - self link // - labels // - ... etc ... metav1.ObjectMeta `json:"metadata,omitempty"` // Spec is the custom resource spec Spec NetworkAuthenticationSpec `json:"spec,omitempty"` }
func (in *NetworkAuthentication) DeepCopy() *NetworkAuthentication
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkAuthentication.
func (in *NetworkAuthentication) DeepCopyInto(out *NetworkAuthentication)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NetworkAuthentication) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
NetworkAuthenticationList is a list of NetworkAuthentication resources.
type NetworkAuthenticationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []NetworkAuthentication `json:"items"` }
func (in *NetworkAuthenticationList) DeepCopy() *NetworkAuthenticationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkAuthenticationList.
func (in *NetworkAuthenticationList) DeepCopyInto(out *NetworkAuthenticationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NetworkAuthenticationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
NetworkAuthentication defines a list of authenticated client networks to be referenced by an `AuthenticationPolicy`.
type NetworkAuthenticationSpec struct { Networks []*Network `json:"networks,omitempty"` }
func (in *NetworkAuthenticationSpec) DeepCopy() *NetworkAuthenticationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkAuthenticationSpec.
func (in *NetworkAuthenticationSpec) DeepCopyInto(out *NetworkAuthenticationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
PathMatchType specifies the semantics of how HTTP paths should be compared. Valid PathMatchType values are:
* "Exact" * "PathPrefix" * "RegularExpression"
PathPrefix and Exact paths must be syntactically valid:
- Must begin with the `/` character - Must not contain consecutive `/` characters (e.g. `/foo///`, `//`).
Note that values may be added to this enum, implementations must ensure that unknown values will not cause a crash.
Unknown values here must result in the implementation setting the Attached Condition for the Route to `status: False`, with a Reason of `UnsupportedValue`.
+kubebuilder:validation:Enum=Exact;PathPrefix;RegularExpression
type PathMatchType string
const ( // Matches the URL path exactly and with case sensitivity. PathMatchExact PathMatchType = "Exact" // Matches based on a URL path prefix split by `/`. Matching is // case sensitive and done on a path element by element basis. A // path element refers to the list of labels in the path split by // the `/` separator. When specified, a trailing `/` is ignored. // // For example, the paths `/abc`, `/abc/`, and `/abc/def` would all match // the prefix `/abc`, but the path `/abcd` would not. // // "PathPrefix" is semantically equivalent to the "Prefix" path type in the // Kubernetes Ingress API. PathMatchPathPrefix PathMatchType = "PathPrefix" // Matches if the URL path matches the given regular expression with // case sensitivity. // // Since `"RegularExpression"` has custom conformance, implementations // can support POSIX, PCRE, RE2 or any other regular expression dialect. // Please read the implementation's documentation to determine the supported // dialect. PathMatchRegularExpression PathMatchType = "RegularExpression" )
QueryParamMatchType specifies the semantics of how HTTP query parameter values should be compared. Valid QueryParamMatchType values are:
* "Exact" * "RegularExpression"
Note that values may be added to this enum, implementations must ensure that unknown values will not cause a crash.
Unknown values here must result in the implementation setting the Attached Condition for the Route to `status: False`, with a Reason of `UnsupportedValue`.
+kubebuilder:validation:Enum=Exact;RegularExpression
type QueryParamMatchType string
QueryParamMatchType constants.
const ( QueryParamMatchExact QueryParamMatchType = "Exact" QueryParamMatchRegularExpression QueryParamMatchType = "RegularExpression" )