mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
24 lines
434 B
YAML
24 lines
434 B
YAML
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: videos-web-canary
|
|
spec:
|
|
hosts:
|
|
- servicemesh.demo
|
|
http:
|
|
- match:
|
|
- uri:
|
|
prefix: /
|
|
headers:
|
|
cookie:
|
|
regex: ^(.*?;)?(version=v2)(;.*)?$
|
|
route:
|
|
- destination:
|
|
host: videos-web-v2
|
|
- match:
|
|
- uri:
|
|
prefix: /
|
|
route:
|
|
- destination:
|
|
host: videos-web
|