123456789101112131415161718192021222324252627282930 |
- 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
|