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: https
|
|
|
|
protocol: HTTPS
|
2021-05-20 09:50:12 +00:00
|
|
|
port: 9001
|
|
|
|
hostname: foo.example.com
|
2020-12-15 15:40:05 +00:00
|
|
|
tls:
|
2021-05-20 09:50:12 +00:00
|
|
|
mode: Terminate # Default mode
|
2021-11-09 10:34:06 +00:00
|
|
|
certificateRefs:
|
|
|
|
- kind: Secret
|
|
|
|
name: supersecret
|
|
|
|
allowedRoutes:
|
2020-12-15 15:40:05 +00:00
|
|
|
namespaces:
|
|
|
|
from: Same
|
|
|
|
|
|
|
|
---
|
2021-05-20 09:50:12 +00:00
|
|
|
kind: TLSRoute
|
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: tls-app-1
|
2020-12-15 15:40:05 +00:00
|
|
|
namespace: default
|
|
|
|
spec:
|
|
|
|
rules:
|
2021-11-09 10:34:06 +00:00
|
|
|
- backendRefs:
|
|
|
|
- name: whoamitcp
|
2021-05-20 09:50:12 +00:00
|
|
|
port: 9000
|
2020-12-15 15:40:05 +00:00
|
|
|
weight: 1
|