Код IT
← Каталог

Service Mesh — Пример политики Istio (VirtualService)

Фрагмент из «Service Mesh»: Пример политики Istio (VirtualService).

yaml infra-securityencyclopedia8-04-devops-ci-cd-218 embed URL статья в энциклопедии
YAML main.yaml
apiVersion: networking.istio.io/v1
kind: VirtualService
metadata:
  name: reviews
spec:
  hosts:
    - reviews
  http:
    - route:
        - destination:
            host: reviews
            subset: v1
          weight: 90
        - destination:
            host: reviews
            subset: v2
          weight: 10
apiVersion: networking.istio.io/v1
kind: VirtualService
metadata:
  name: reviews
spec:
  hosts:
    - reviews
  http:
    - route:
        - destination:
            host: reviews
            subset: v1
          weight: 90
        - destination:
            host: reviews
            subset: v2
          weight: 10