43 lines
735 B
YAML
43 lines
735 B
YAML
|
---
|
||
|
kind: GatewayClass
|
||
|
apiVersion: networking.x-k8s.io/v1alpha1
|
||
|
metadata:
|
||
|
name: my-gateway-class
|
||
|
spec:
|
||
|
controller: traefik.io/gateway-controller
|
||
|
|
||
|
---
|
||
|
kind: Gateway
|
||
|
apiVersion: networking.x-k8s.io/v1alpha1
|
||
|
metadata:
|
||
|
name: my-gateway
|
||
|
namespace: default
|
||
|
spec:
|
||
|
gatewayClassName: my-gateway-class
|
||
|
listeners:
|
||
|
- protocol: HTTP
|
||
|
port: 8180
|
||
|
routes:
|
||
|
kind: HTTPRoute
|
||
|
|
||
|
---
|
||
|
kind: HTTPRoute
|
||
|
apiVersion: networking.x-k8s.io/v1alpha1
|
||
|
metadata:
|
||
|
name: http-app-1
|
||
|
namespace: default
|
||
|
labels:
|
||
|
app: foo
|
||
|
spec:
|
||
|
hostnames:
|
||
|
- "foo.com"
|
||
|
rules:
|
||
|
- matches:
|
||
|
- path:
|
||
|
type: Exact
|
||
|
value: /bar
|
||
|
forwardTo:
|
||
|
- serviceName: whoami
|
||
|
port: 80
|
||
|
weight: 1
|