HTTPRoute resource fields
The HTTPRoute
resource sets forth the rules for traffic routing across backends represented by Kubernetes services (Service resources) or traffic redirection. HTTPRoute
receives incoming traffic from those Gateway
resources whose requirements it satisfies.
HTTPRoute
is designed for application developers. Cluster operators should use Gateway
.
HTTPRoute
is a Kubernetes resource specified by the Kubernetes Gateway API project
HTTPRoute
apiVersion: gateway.networking.k8s.io/v1alpha2
kind: HTTPRoute
metadata:
name: <string>
namespace: <string>
spec: <HTTPRouteSpec>
Where:
-
apiVersion
:gateway.networking.k8s.io/v1alpha2
-
kind
:HTTPRoute
-
metadata
(ObjectMeta
, required)Resource metadata.
-
name
(string
, required)Resource name. For more information about the format, please see the Kubernetes documentation
.This name is not the route name in Application Load Balancer.
-
namespace
(string
)Namespace the resource belongs to. The default value is
default
.
-
-
spec
(HTTPRouteSpec
, required)Resource specification. For more information, see below.
HTTPRouteSpec
parentRefs:
- group: <string>
kind: <string>
namespace: <string>
name: <string>
sectionName: <string>
- ...
hostnames:
- <string>
- ...
rules:
- matches:
- path:
type: <string>
value: <string>
method: <string>
- ...
filters:
- <HTTPRouteFilter>
- ...
backendRefs:
- group: <string>
kind: <string>
name: <string>
namespace: <string>
port: <int32>
weight: <int32>
filters:
- <HTTPRouteFilter>
- ...
- ...
- ...
Where:
-
parentRefs
([]ParentReference
, required)List of the
Gateway
resources (or their listeners from thespec.listeners
field; see this reference)HTTPRoute
must be linked to.The route must also comply with the rules described in the [`Gateway configuration](../../../application-load-balancer/k8s-ref/gateway.md#spec) (the `spec.listeners.allowedRoutes` field).
-
namespace
(string
)Namespace the
Gateway
resource belongs to (specified in its metadata in themetadata.namespace
field).By default, it matches the namespace of the
HTTPRoute
resource (themetadata.namespace
field). -
name
(string
, required)Name of the
Gateway
resource (specified in its metadata in themetadata.name
field). -
sectionName
(string
)Name of the listener specified in the
Gateway
resource (specified in thespec.listeners.name
field).
-
-
hostnames
([]string
)List of domain names (values of the
Host
header for HTTP/1.1 or the:authority
pseudo-header for HTTP/2) for the route. For each hostname, virtual hosts will be created in HTTP routers.To refer to every possible subdomain at any level, replace the first-level domain name with an asterisk (
*
). In this case, the value must be wrapped in quotes.For instance, the
"*.example.com"
value matchesfoo.example.com
,foo-bar.example.com
,foo.bar.example.com
,foo.bar.baz.example.com
, etc., but does not matchexample.com
.You cannot replace only a part of a first-level domain name with an asterisk, as in
*foo.example.com
. -
rules
([]HTTPRouteRule
)Rules for routing and redirecting requests.
-
matches
([]HTTPRouteMatch
)List of conditions at least one of which must be met by the request for the rule to apply.
For example, all
POST
requests to the/foo
path and all requests to the/bar
path will meet the conditions listed below:matches: - path: value: /foo method: POST - path: value: /bar
Only the fields listed below are supported. Other fields described in the Gateway API reference
(headers
andqueryParams
) are not supported.-
path
(HTTPPathMatch
)Reference to the path in the request URI.
-
type
(string
)Type of reference to the path in the request URI:
Exact
: The path must match therules.matches.path.value
field.PathPrefix
: The path must begin with therules.matches.path.value
field value.
Apart from traffic distribution, the type affects the path replacement mechanism used during a redirect. For more information, see below.
-
value
(string
)Incoming request URI path (if
Exact
) or its prefix (ifPathPrefix
).
-
-
method
(HTTPMethod
)HTTP method of the request.
-
-
filters
([]HTTPRouteFilter
)List of filters describing how request headers are modified when routing a request to any backend or redirecting them. For more information, see below.
You can specify either the
RequestHeaderModifier
or theRequestRedirect
filter, but not both at the same time. -
backendRefs
([]HTTPBackendRef
)List of Kubernetes services to handle requests as a backend.
The
Service
resource this field refers to must be described in line with the standard configuration.-
name
(string
)Kubernetes service name.
-
namespace
(string
)Namespace the service belongs to.
-
port
(int32
)Service port number.
The number must match one of the port numbers specified in the
spec.ports.port
fields of theService
resource. For more information, see the resource configuration.The field is designed for the Gateway API operation and does not match any of the Application Load Balancer resource fields.
-
weight
(int32
)Relative backend weight. Traffic is distributed to backends in a group as a function of backend weights.
Weights must be specified either for all backends in a group, or for none. If weights are not specified, traffic is distributed to the backends as if they had identical positive weights.
If a non-positive weight is specified, a backend will not receive traffic.
-
filters
([]HTTPRouteFilter
)Request header modification settings when routing to backend. For more information, see below.
You can only specify the
RequestHeaderModifier
filter.
-
-
HTTPRouteFilter
type: <string>
requestHeaderModifier:
set:
- name: <string>
value: <string>
- ...
add:
- name: <string>
value: <string>
- ...
remove:
- <string>
- ...
requestRedirect:
scheme: <string>
hostname: <string>
path:
type: <string>
replaceFullPath: <string>
replacePrefixMatch: <string>
port: <int32>
statusCode: <int>
Where:
-
type
(string
)Filter type:
RequestHeaderModifier
: Modifying request headers. Specify the settings in therequestHeaderModifier
field.RequestRedirect
: Request redirection. Specify the settings in therequestRedirect
field.
-
requestHeaderModifier
(HTTPRequestHeaderFilter
)Request header modification settings for the
RequestHeaderModifier
filter type.-
set
([]HTTPHeader
)List of headers to be overwritten.
-
name
(string
)Overwritable header name.
-
value
(string
)Value written to the header.
-
-
add
([]HTTPHeader
)List of added headers.
-
name
(string
)Added header's name.
-
value
(string
)Added header's value.
-
-
remove
([]string
)List of headers to be removed.
-
-
requestRedirect
(HTTPRequestRedirectFilter
)Request redirect settings for the
RequestRedirect
filter type.-
scheme
(string
)New schema in the request URI:
http
orhttps
. By default, the schema remains unchanged. -
hostname
(string
)New hostname in the request URI. By default, the hostname remains unchanged.
-
path
(HTTPPathModifier
)Settings for replacing the path in the request URI.
-
type
(string
)Path replacement type:
ReplaceFullPath
: Replacing full path. Specify a new path in thereplaceFullPath
field.ReplacePrefixMatch
: Replacement depending on theHTTPRoute
specification path (thespec.rules.matches.path
field): ifExact
, the full path is replaced; ifPathPrefix
, only the prefix is replaced. Specify a new path or its prefix in thereplacePrefixMatch
field.
-
replaceFullPath
(string
)New path if the
ReplaceFullPath
type is used. -
replacePrefixMatch
(string
)New path or its prefix if the
ReplacePrefixMatch
type is used (see the type description above).
-
-
port
(int32
)New port in the request URI.
-
statusCode
(int
)HTTP status code returned in the event of a redirect.
-