20 lines
372 B
YAML
20 lines
372 B
YAML
apiVersion: gateway.networking.k8s.io/v1beta1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: helloworld
|
|
spec:
|
|
parentRefs:
|
|
- name: helloworld-gateway
|
|
rules:
|
|
- matches:
|
|
- path:
|
|
type: Exact
|
|
value: /hello
|
|
backendRefs:
|
|
- name: helloworld-v1
|
|
port: 5000
|
|
weight: 90
|
|
- name: helloworld-v2
|
|
port: 5000
|
|
weight: 10
|