15 lines
308 B
YAML
15 lines
308 B
YAML
|
apiVersion: networking.istio.io/v1alpha3
|
||
|
kind: Gateway
|
||
|
metadata:
|
||
|
name: istio-ingressgateway
|
||
|
#namespace: istio-system
|
||
|
spec:
|
||
|
selector:
|
||
|
istio: ingressgateway # use Istio default gateway implementation
|
||
|
servers:
|
||
|
- port:
|
||
|
number: 80
|
||
|
name: http
|
||
|
protocol: HTTP
|
||
|
hosts:
|
||
|
- "*"
|