...

Text file src/sigs.k8s.io/gateway-api/examples/standard/multicluster/httproute-location.yaml

Documentation: sigs.k8s.io/gateway-api/examples/standard/multicluster

     1#$ Used in:
     2#$ - geps/gep-1748.md
     3kind: HTTPRoute
     4apiVersion: gateway.networking.k8s.io/v1beta1
     5metadata:
     6  name: store
     7spec:
     8  parentRefs:
     9  - name: external-http
    10  rules:
    11  - matches:
    12    - path:
    13        type: PathPrefix
    14        value: /west
    15    backendRefs:
    16    - group: multicluster.x-k8s.io
    17      kind: ServiceImport
    18      name: store-west
    19      port: 8080
    20  - matches:
    21    - path:
    22        type: PathPrefix
    23        value: /east
    24    backendRefs:
    25    - group: multicluster.x-k8s.io
    26      kind: ServiceImport
    27      name: store-east
    28      port: 8080
    29  - backendRefs:
    30    - group: multicluster.x-k8s.io
    31      kind: ServiceImport
    32      name: store
    33      port: 8080

View as plain text