基于 Istio 入口网关子域路由

Abd*_*ied 2 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  

     
Run Code Online (Sandbox Code Playgroud)

use*_*547 5

我猜想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
Run Code Online (Sandbox Code Playgroud)