...
1#$ Used in:
2#$ - site-src/concepts/api-overview.md
3apiVersion: gateway.networking.k8s.io/v1beta1
4kind: Gateway
5metadata:
6 name: foo-gateway
7 namespace: gateway-api-example-ns1
8spec:
9 gatewayClassName: foo-lb
10 listeners:
11 - name: prod-web
12 port: 80
13 protocol: HTTP
14 allowedRoutes:
15 kinds:
16 - kind: HTTPRoute
17 namespaces:
18 from: Selector
19 selector:
20 matchLabels:
21 # This label is added automatically as of K8s 1.22
22 # to all namespaces
23 kubernetes.io/metadata.name: gateway-api-example-ns2
View as plain text