istio.io/istio@v0.0.0-20240520182934-d79c90f27776/samples/bookinfo/networking/virtual-service-ratings-mysql.yaml (about) 1 apiVersion: networking.istio.io/v1alpha3 2 kind: VirtualService 3 metadata: 4 name: reviews 5 spec: 6 hosts: 7 - reviews 8 http: 9 - route: 10 - destination: 11 host: reviews 12 subset: v3 13 --- 14 apiVersion: networking.istio.io/v1alpha3 15 kind: VirtualService 16 metadata: 17 name: ratings 18 spec: 19 hosts: 20 - ratings 21 http: 22 - route: 23 - destination: 24 host: ratings 25 subset: v2-mysql 26 ---