mirror of
https://github.com/alibaba/higress.git
synced 2026-03-11 04:00:49 +08:00
33 lines
572 B
YAML
33 lines
572 B
YAML
apiVersion: gateway.networking.k8s.io/v1alpha2
|
|
kind: Gateway
|
|
metadata:
|
|
name: gateway
|
|
namespace: higress-system
|
|
spec:
|
|
gatewayClassName: higress
|
|
listeners:
|
|
- name: default
|
|
port: 80
|
|
protocol: HTTP
|
|
allowedRoutes:
|
|
namespaces:
|
|
from: All
|
|
---
|
|
apiVersion: gateway.networking.k8s.io/v1alpha2
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: http
|
|
namespace: default
|
|
spec:
|
|
parentRefs:
|
|
- name: gateway
|
|
namespace: higress-system
|
|
rules:
|
|
-
|
|
backendRefs:
|
|
- kind: Hostname
|
|
group: networking.istio.io
|
|
name: google.com
|
|
port: 80
|
|
---
|