7996a42f76
Co-authored-by: Harold Ozouf <harold.ozouf@gmail.com>
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
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: # Use GatewayClass defaults for listener definition.
|
|
- protocol: HTTP
|
|
port: 80
|
|
routes:
|
|
kind: HTTPRoute
|
|
namespaces:
|
|
from: Same
|
|
selector:
|
|
app: foo
|
|
|
|
---
|
|
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
|
|
- matches:
|
|
- path:
|
|
type: Prefix
|
|
value: /foo
|
|
forwardTo:
|
|
- backendRef:
|
|
group: traefik.containo.us
|
|
kind: TraefikService
|
|
name: myservice@file
|
|
weight: 1
|
|
port: 80
|