Skip to content

Instantly share code, notes, and snippets.

@WolfgangOfner
Created August 31, 2021 15:45
Show Gist options
  • Save WolfgangOfner/9e5fb935538008b11ccb9d6af1321236 to your computer and use it in GitHub Desktop.
Save WolfgangOfner/9e5fb935538008b11ccb9d6af1321236 to your computer and use it in GitHub Desktop.
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: productpage
spec:
hosts:
- productpage
http:
- route:
- destination:
host: productpage
subset: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: reviews
spec:
hosts:
- reviews
http:
- route:
- destination:
host: reviews
subset: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: ratings
spec:
hosts:
- ratings
http:
- route:
- destination:
host: ratings
subset: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: details
spec:
hosts:
- details
http:
- route:
- destination:
host: details
subset: v1
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment