30 lines
551 B
YAML
30 lines
551 B
YAML
apiVersion: gateway.networking.k8s.io/v1beta1
|
|
kind: Gateway
|
|
metadata:
|
|
name: helloworld-gateway
|
|
spec:
|
|
gatewayClassName: istio
|
|
listeners:
|
|
- name: http
|
|
port: 80
|
|
protocol: HTTP
|
|
allowedRoutes:
|
|
namespaces:
|
|
from: Same
|
|
---
|
|
apiVersion: gateway.networking.k8s.io/v1beta1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: helloworld
|
|
spec:
|
|
parentRefs:
|
|
- name: helloworld-gateway
|
|
rules:
|
|
- matches:
|
|
- path:
|
|
type: Exact
|
|
value: /hello
|
|
backendRefs:
|
|
- name: helloworld
|
|
port: 5000
|