More than one virtual service for the same host

I’m getting a warning with the message “More than one virtual service for the same host”. I don’t see multiple virtual services for the same host. Following is the yaml I’m using to deploy the virtual service and destination rule. Anybody know what is going on?

image

kind: VirtualService
apiVersion: networking.istio.io/v1alpha3
metadata:
name: bookinfo-reviews
namespace: default
spec:
hosts:
- reviews.default.svc.cluster.local
http:
- route:
- destination:
host: reviews.default.svc.cluster.local
subset: v1
weight: 10
- destination:
host: reviews.default.svc.cluster.local
subset: v2
weight: 10
- destination:
host: reviews.default.svc.cluster.local
subset: v3
weight: 80

kind: DestinationRule
apiVersion: networking.istio.io/v1alpha3
metadata:
name: bookinfo-reviews
namespace: default
spec:
host: reviews.default.svc.cluster.local
subsets:
- labels:
version: v1
name: v1
- labels:
version: v2
name: v2
- labels:
version: v3
name: v3