27 lines
557 B
YAML
27 lines
557 B
YAML
|
---
|
||
|
kind: GatewayClass
|
||
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
||
|
metadata:
|
||
|
name: my-gateway-class
|
||
|
spec:
|
||
|
controllerName: traefik.io/gateway-controller
|
||
|
|
||
|
---
|
||
|
kind: Gateway
|
||
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
||
|
metadata:
|
||
|
name: my-gateway
|
||
|
namespace: default
|
||
|
spec:
|
||
|
gatewayClassName: my-gateway-class
|
||
|
listeners: # Use GatewayClass defaults for listener definition.
|
||
|
- name: http
|
||
|
protocol: TCP
|
||
|
port: 8080
|
||
|
tls: { }
|
||
|
allowedRoutes:
|
||
|
namespaces:
|
||
|
from: Same
|
||
|
kinds:
|
||
|
- kind: TCPRoute
|