Skip to content
Docs Try Aspire
Docs Try

KubernetesGatewayResource.withGatewayHostRoute

Method
📦 Aspire.Hosting.Kubernetes v13.4.0-preview.1.26281.18
interface KubernetesGatewayResource {
// ... omitted for brevity
withGatewayHostRoute(
host: string,
path: string,
endpoint: EndpointReference,
pathType?: GatewayPathMatchType): KubernetesGatewayResource;
}

Signature

method withGatewayHostRoute builder
Adds a host-and-path-based routing rule to the gateway. The rule matches traffic for the specified host and path, routing it to the given endpoint's backing Kubernetes service. This generates an `HTTPRoute` resource with a `hostnames` filter.
withGatewayHostRoute(
host: string,
path: string,
endpoint: EndpointReference,
pathType?: GatewayPathMatchType): KubernetesGatewayResource
host string
path string
endpoint EndpointReference
pathType GatewayPathMatchType optional = PathPrefix
KubernetesGatewayResource

Defined on

This method is defined on the following type: