2020-12-15 15:40:05 +00:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
|
|
|
name: supersecret
|
|
|
|
namespace: default
|
|
|
|
|
|
|
|
data:
|
|
|
|
tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0=
|
|
|
|
tls.key: LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCi0tLS0tRU5EIFBSSVZBVEUgS0VZLS0tLS0=
|
|
|
|
|
|
|
|
---
|
|
|
|
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: 9000
|
2020-12-15 15:40:05 +00:00
|
|
|
tls:
|
2021-11-09 10:34:06 +00:00
|
|
|
certificateRefs:
|
|
|
|
- kind: Secret
|
|
|
|
name: supersecret
|
|
|
|
group: ""
|
|
|
|
allowedRoutes:
|
|
|
|
kinds:
|
|
|
|
- kind: TCPRoute
|
|
|
|
group: gateway.networking.k8s.io
|
2020-12-15 15:40:05 +00:00
|
|
|
namespaces:
|
|
|
|
from: Same
|
|
|
|
|
|
|
|
---
|
2021-05-20 09:50:12 +00:00
|
|
|
kind: TCPRoute
|
2021-11-09 10:34:06 +00:00
|
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
2020-12-15 15:40:05 +00:00
|
|
|
metadata:
|
2021-05-20 09:50:12 +00:00
|
|
|
name: tcp-app-1
|
2020-12-15 15:40:05 +00:00
|
|
|
namespace: default
|
|
|
|
spec:
|
2021-11-09 10:34:06 +00:00
|
|
|
parentRefs:
|
|
|
|
- name: my-gateway
|
|
|
|
kind: Gateway
|
|
|
|
group: gateway.networking.k8s.io
|
2020-12-15 15:40:05 +00:00
|
|
|
rules:
|
2021-11-09 10:34:06 +00:00
|
|
|
- backendRefs:
|
2021-05-20 09:50:12 +00:00
|
|
|
- weight: 1
|
2021-11-09 10:34:06 +00:00
|
|
|
group: traefik.containo.us
|
|
|
|
kind: TraefikService
|
|
|
|
name: service@file
|
2021-05-20 09:50:12 +00:00
|
|
|
port: 9000
|
2021-11-09 10:34:06 +00:00
|
|
|
- name: whoamitcp
|
2021-05-20 09:50:12 +00:00
|
|
|
port: 9000
|
2020-12-15 15:40:05 +00:00
|
|
|
weight: 1
|
2021-11-09 10:34:06 +00:00
|
|
|
kind: Service
|
|
|
|
group: ""
|