8e32d1913b
Co-authored-by: Tom Moulard <tom.moulard@traefik.io>
34 lines
661 B
YAML
34 lines
661 B
YAML
---
|
|
kind: Gateway
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
|
metadata:
|
|
name: my-gateway
|
|
namespace: default
|
|
spec:
|
|
gatewayClassName: my-gateway-class
|
|
listeners: # Use GatewayClass defaults for listener definition.
|
|
- name: http
|
|
protocol: HTTP
|
|
port: 80
|
|
allowedRoutes:
|
|
namespaces:
|
|
from: Same
|
|
|
|
---
|
|
kind: HTTPRoute
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
|
metadata:
|
|
name: http-app-1
|
|
namespace: default
|
|
spec:
|
|
hostnames:
|
|
- "foo.com"
|
|
rules:
|
|
- matches:
|
|
- path:
|
|
type: Exact
|
|
value: /bar
|
|
backendRefs:
|
|
- name: whoami
|
|
port: 80
|
|
weight: 1
|