github.com/fafucoder/cilium@v1.6.11/examples/kubernetes-istio/route-rule-reviews-v1.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: v1 13 weight: 100 14 --- 15 apiVersion: networking.istio.io/v1alpha3 16 kind: DestinationRule 17 metadata: 18 name: reviews 19 spec: 20 host: reviews 21 trafficPolicy: 22 tls: 23 mode: ISTIO_MUTUAL 24 subsets: 25 - name: v1 26 labels: 27 version: v1 28 - name: v2 29 labels: 30 version: v2