istio.io/istio@v0.0.0-20240520182934-d79c90f27776/pkg/config/analysis/analyzers/testdata/conflicting-gateways.yaml (about) 1 apiVersion: networking.istio.io/v1alpha3 2 kind: Gateway 3 metadata: 4 name: beta 5 spec: 6 selector: 7 istio: ingressgateway 8 servers: 9 - port: 10 number: 80 11 name: tcp 12 protocol: TCP 13 hosts: 14 - "foo.bar" 15 --- 16 apiVersion: networking.istio.io/v1alpha3 17 kind: Gateway 18 metadata: 19 name: alpha 20 spec: 21 selector: 22 istio: ingressgateway 23 servers: 24 - port: 25 number: 80 26 name: http 27 protocol: HTTP 28 hosts: 29 - "foo.bar"