Host rewrites
Replace the host header value before forwarding a request to a backend service by using the URLRewrite filter.
For more information, see the Kubernetes Gateway API documentation.
Before you begin
-
Follow the Get started guide to install kgateway.
-
Follow the Sample app guide to create an API gateway proxy with an HTTP listener and deploy the httpbin sample app.
-
Get the external address of the gateway and save it in an environment variable.
export INGRESS_GW_ADDRESS=$(kubectl get svc -n kgateway-system http -o jsonpath="{.status.loadBalancer.ingress[0]['hostname','ip']}") echo $INGRESS_GW_ADDRESSkubectl port-forward deployment/http -n kgateway-system 8080:8080
Rewrite hosts
-
Create an HTTPRoute resource for the httpbin app that uses the
URLRewritefilter to rewrite the hostname of th request. In this example, all incoming requests on therewrite.exampledomain are rewritten to thewww.example.comhost.kubectl apply -f- <<EOF apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: httpbin-rewrite namespace: httpbin spec: parentRefs: - name: http namespace: kgateway-system hostnames: - rewrite.example rules: - filters: - type: URLRewrite urlRewrite: hostname: "www.example.com" backendRefs: - name: httpbin port: 8000 EOFSetting Description spec.parentRefsThe name and namespace of the Gateway that serves this HTTPRoute. In this example, you use the httpgateway that was created as part of the get started guide.spec.rules.filters.typeThe type of filter that you want to apply to incoming requests. In this example, the URLRewritefilter is used.spec.rules.filters.urlRewrite.hostnameThe hostname that you want to rewrite requests to. spec.rules.backendRefsThe backend destination you want to forward traffic to. In this example, all traffic is forwarded to the httpbin app that you set up as part of the get started guide. -
Send a request to the httpbin app on the
rewrite.exampledomain. Verify that you get back a 200 HTTP response code and that you see theHost: www.example.comheader in your response.âšī¸The following request returns a 200 HTTP response code, because you set up an HTTPRoute for the httpbin app on thewww.example.comdomain as part of the Getting started guide. If you chose a different domain for your example, make sure that you have an HTTPRoute that can be reached under the host you want to rewrite to.curl -vik http://$INGRESS_GW_ADDRESS:8080/headers -H "host: rewrite.example:8080"curl -vik localhost:8080/headers -H "host: rewrite.example"Example output:
... { "headers": { "Accept": [ "*/*" ], "Host": [ "www.example.com" ], "User-Agent": [ "curl/7.77.0" ], "X-Envoy-Expected-Rq-Timeout-Ms": [ "15000" ], "X-Forwarded-Proto": [ "http" ], "X-Request-Id": [ "ffc55a3e-60ae-4c90-9a5c-62c8a1ba1076" ] } } -
Optional: Clean up the resources that you created.
kubectl delete httproute httpbin-rewrite -n httpbin