mirror of
https://github.com/fluxcd/flagger.git
synced 2026-03-02 17:51:00 +00:00
35 lines
661 B
YAML
35 lines
661 B
YAML
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: podinfo
|
|
namespace: test
|
|
spec:
|
|
gateways:
|
|
- public-gateway.istio-system.svc.cluster.local
|
|
- mesh
|
|
hosts:
|
|
- podinfo.iowa.weavedx.com
|
|
- podinfo
|
|
http:
|
|
- match:
|
|
- headers:
|
|
user-agent:
|
|
regex: ^(?!.*Chrome)(?=.*\bSafari\b).*$
|
|
route:
|
|
- destination:
|
|
host: podinfo-primary
|
|
port:
|
|
number: 9898
|
|
weight: 0
|
|
- destination:
|
|
host: podinfo
|
|
port:
|
|
number: 9898
|
|
weight: 100
|
|
- route:
|
|
- destination:
|
|
host: podinfo-primary
|
|
port:
|
|
number: 9898
|
|
weight: 100
|