Files
robot-shop/K8s/Istio/canary.yaml
Steve Waterworth 7bbee0365f rename istio file
2019-09-03 10:27:22 +01:00

36 lines
816 B
YAML

# Canary testing using Istio
# The DestinationRule defines the subsets by Deployment label
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: canary-test
spec:
host: payment.robot-shop.svc.cluster.local
subsets:
- name: production
labels:
stage: prod
- name: canary
labels:
stage: test
---
# VirtualService subset references DestinationRule spec.subsets.name
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: robotshop-canary
spec:
hosts:
- payment.robot-shop.svc.cluster.local
http:
- route:
- destination:
host: payment.robot-shop.svc.cluster.local
subset: production
weight: 99
- destination:
host: payment.robot-shop.svc.cluster.local
subset: canary
weight: 1