File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
third_party/envoy-gateway Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,20 @@ echo ">> Deploy Gateway API resources"
101101kubectl apply -f ./third_party/contour
102102```
103103
104+ #### Envoy Gateway
105+
106+ ``` bash
107+ echo " >> Bringing up Envoy Gateway"
108+ helm repo add envoyproxy https://charts.envoyproxy.io
109+ helm install eg oci://docker.io/envoyproxy/gateway-helm \
110+ --version ${ENVOY_GATEWAY_VERSION} \
111+ -n envoy-gateway-system --create-namespace \
112+ -f ./third_party/envoy-gateway/helm/values-eg.yaml
113+
114+ echo " >> Deploy Gateway API resources"
115+ kubectl apply -f ./third_party/envoy-gateway
116+ ```
117+
104118### (OPTIONAL) For testing purpose (Istio)
105119
106120Use Kind with MetalLB - https://kind.sigs.k8s.io/docs/user/loadbalancer
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ data:
2525 external-gateways : |
2626 - class: eg-external
2727 gateway: eg-external/eg-external
28- service: envoy-gateway-system /knative-external
28+ service: eg-external /knative-external
2929 supported-features:
3030 - HTTPRouteRequestTimeout
3131
3232 # local-gateways defines the Gateway to be used for cluster local traffic
3333 local-gateways : |
3434 - class: eg-internal
3535 gateway: eg-internal/eg-internal
36- service: envoy-gateway-system /knative-internal
36+ service: eg-internal /knative-internal
3737 supported-features:
3838 - HTTPRouteRequestTimeout
Original file line number Diff line number Diff line change 1+ config :
2+ envoyGateway :
3+ provider :
4+ type : Kubernetes
5+ kubernetes :
6+ deploy :
7+ type : GatewayNamespace
8+
9+
You can’t perform that action at this time.
0 commit comments