Skip to content

Instantly share code, notes, and snippets.

@bharatmicrosystems
Created April 28, 2020 23:27
Show Gist options
  • Save bharatmicrosystems/7a1e817e47c094c7200edbaa5cd78d46 to your computer and use it in GitHub Desktop.
Save bharatmicrosystems/7a1e817e47c094c7200edbaa5cd78d46 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