Created
April 28, 2020 23:27
-
-
Save bharatmicrosystems/7a1e817e47c094c7200edbaa5cd78d46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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