istio.io/istio@v0.0.0-20240520182934-d79c90f27776/samples/bookinfo/networking/virtual-service-all-v1.yaml (about)

     1  apiVersion: networking.istio.io/v1alpha3
     2  kind: VirtualService
     3  metadata:
     4    name: productpage
     5  spec:
     6    hosts:
     7    - productpage
     8    http:
     9    - route:
    10      - destination:
    11          host: productpage
    12          subset: v1
    13  ---
    14  apiVersion: networking.istio.io/v1alpha3
    15  kind: VirtualService
    16  metadata:
    17    name: reviews
    18  spec:
    19    hosts:
    20    - reviews
    21    http:
    22    - route:
    23      - destination:
    24          host: reviews
    25          subset: v1
    26  ---
    27  apiVersion: networking.istio.io/v1alpha3
    28  kind: VirtualService
    29  metadata:
    30    name: ratings
    31  spec:
    32    hosts:
    33    - ratings
    34    http:
    35    - route:
    36      - destination:
    37          host: ratings
    38          subset: v1
    39  ---
    40  apiVersion: networking.istio.io/v1alpha3
    41  kind: VirtualService
    42  metadata:
    43    name: details
    44  spec:
    45    hosts:
    46    - details
    47    http:
    48    - route:
    49      - destination:
    50          host: details
    51          subset: v1
    52  ---