Created
May 9, 2020 19:05
-
-
Save fai555/a7276736fe566b0c5cc0e25f2abe7905 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
| kubectl apply -f - <<EOF | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: VirtualService | |
| metadata: | |
| name: httpbin | |
| namespace: foo | |
| spec: | |
| hosts: | |
| - "*" | |
| gateways: | |
| - httpbin-gateway | |
| http: | |
| - route: | |
| - destination: | |
| port: | |
| number: 8000 | |
| host: httpbin.foo.svc.cluster.local | |
| EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment