1apiVersion: gateway.networking.k8s.io/v1 2kind: HTTPRoute 3metadata: 4 name: exact-matching 5 namespace: gateway-conformance-infra 6spec: 7 parentRefs: 8 - name: same-namespace 9 rules: 10 - matches: 11 - path: 12 type: Exact 13 value: /one 14 backendRefs: 15 - name: infra-backend-v1 16 port: 8080 17 - matches: 18 - path: 19 type: Exact 20 value: /two 21 backendRefs: 22 - name: infra-backend-v2 23 port: 8080