Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apiVersion: networking.istio.io/v1alpha3
- kind: Gateway
- metadata:
- name: hello-istio-gateway
- namespace: istio-system
- spec:
- selector:
- istio: ingressgateway # use Istio default gateway implementation
- servers:
- - port:
- number: 13452
- name: http
- protocol: HTTP
- hosts:
- - "hello-istio.domain"
- ---
- apiVersion: networking.istio.io/v1alpha3
- kind: VirtualService
- metadata:
- name: hello-istio-vs
- namespace: istio-system
- spec:
- hosts:
- - "hello-istio.domain"
- gateways:
- - hello-istio-gateway.istio-system.svc.cluster.local
- http:
- - match:
- - uri:
- prefix: /
- route:
- - destination:
- port:
- number: 13451
- host: hello-istio.hello-istio.svc.cluster.local
Add Comment
Please, Sign In to add comment