istio.io/istio@v0.0.0-20240520182934-d79c90f27776/samples/helloworld/gateway-api/helloworld-route.yaml (about)

     1  apiVersion: gateway.networking.k8s.io/v1beta1
     2  kind: HTTPRoute
     3  metadata:
     4    name: helloworld
     5  spec:
     6    parentRefs:
     7    - name: helloworld-gateway
     8    rules:
     9    - matches:
    10      - path:
    11          type: Exact
    12          value: /hello
    13      backendRefs:
    14      - name: helloworld-v1
    15        port: 5000
    16        weight: 90
    17      - name: helloworld-v2
    18        port: 5000
    19        weight: 10