22 lines
419 B
YAML
22 lines
419 B
YAML
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: rollouts-demo-vsvc1
|
|
spec:
|
|
gateways:
|
|
- rollouts-demo-gateway
|
|
hosts:
|
|
- a.itstant.com
|
|
http:
|
|
- name: primary
|
|
route:
|
|
- destination:
|
|
host: rollouts-demo-stable
|
|
port:
|
|
number: 80
|
|
weight: 100
|
|
- destination:
|
|
host: rollouts-demo-canary
|
|
port:
|
|
number: 80
|
|
weight: 0 |