Skip to content

Instantly share code, notes, and snippets.

@dangtrinhnt
Created August 30, 2019 09:39
Show Gist options
  • Save dangtrinhnt/62b9c23acb01b2eb26148ebb9df8142f to your computer and use it in GitHub Desktop.
Save dangtrinhnt/62b9c23acb01b2eb26148ebb9df8142f to your computer and use it in GitHub Desktop.
httpbin-gateway istio sample
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: httpbin-gateway
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: httpbin
spec:
hosts:
- "*"
gateways:
- httpbin-gateway
http:
- route:
- destination:
host: httpbin
port:
number: 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment