基于 Istio 入口网关子域路由

时间:2021-05-21 11:37:02

标签: kubernetes istio istio-gateway

我需要通过 istio 入口网关公开三个服务,我已经设置了这些服务的 dns 记录以指向入口网关负载均衡器,但我没有成功使其工作。

网关和虚拟服务配置文件:

apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: test-gateway
spec:
  selector:
    istio: ingressgateway # use istio default controller
  servers:
  - port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "*.mywebsite.io"


    
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: virtualservice
spec:
  hosts:
  - "*.mywebsite.io"
  gateways:
  - test-gateway
  http:
  - name: "api-gateway"
    match:
    - uri:
        exact: "gateway.mywebsite.io"
    route:
      - destination:
           host: gateway.default.svc.cluster.local
           port:
             number: 8080
  - name: "visitor-service"
    match:
    - uri:
        exact: "visitor-service.mywebsite.io"
    route:
      - destination:
           host: visitor-service.default.svc.cluster.local
           port:
             number: 8000
  - name: "auth-service"
    match:
    - uri:
        exact: "auth-service.mywebsite.io"
    route:
      - destination:
           host: auth-service.default.svc.cluster.local
           port:
             number: 3004  

     

1 个答案:

答案 0 :(得分:2)

我猜 HttpMatchRequest 的 URI 部分不能那样工作。尝试为每个子域添加 VirtualServices,例如。

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: gateway-virtualservice
spec:
  hosts:
  - "gateway.mywebsite.io"
  gateways:
  - test-gateway
  http:
  - name: "api-gateway"
    match:
    - uri:
        exact: "/" #or prefix
    route:
      - destination:
           host: gateway.default.svc.cluster.local
           port:
             number: 8080
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: visitor-virtualservice
spec:
  hosts:
  - "visitor-service.mywebsite.io"
  gateways:
  - test-gateway
  http:
  - name: "visitor-service"
    match:
    - uri:
        exact: "/"
    route:
      - destination:
           host: visitor-service.default.svc.cluster.local
           port:
             number: 8000