2020-12-15 15:40:05 +00:00
|
|
|
---
|
|
|
|
kind: GatewayClass
|
2021-11-09 10:34:06 +00:00
|
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
2020-12-15 15:40:05 +00:00
|
|
|
metadata:
|
|
|
|
name: my-gateway-class
|
|
|
|
spec:
|
2021-11-09 10:34:06 +00:00
|
|
|
controllerName: traefik.io/gateway-controller
|
2020-12-15 15:40:05 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: Gateway
|
2021-11-09 10:34:06 +00:00
|
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
2020-12-15 15:40:05 +00:00
|
|
|
metadata:
|
|
|
|
name: my-gateway
|
|
|
|
namespace: default
|
|
|
|
spec:
|
|
|
|
gatewayClassName: my-gateway-class
|
2021-11-09 10:34:06 +00:00
|
|
|
listeners: # Use GatewayClass defaults for listener definition.
|
|
|
|
- name: tls
|
|
|
|
protocol: TLS
|
2021-05-20 09:50:12 +00:00
|
|
|
port: 8080
|
|
|
|
tls:
|
|
|
|
mode: Passthrough
|
2021-11-09 10:34:06 +00:00
|
|
|
allowedRoutes:
|
|
|
|
kinds:
|
|
|
|
- kind: TLSRoute
|
|
|
|
group: gateway.networking.k8s.io
|
2020-12-15 15:40:05 +00:00
|
|
|
namespaces:
|
|
|
|
from: Same
|