istio實現對外暴露服務


1、確認istio-ingressgateway是否有對外的IP

kubectl get  service istio-ingressgateway -n istio-system

如果 EXTERNAL-IP 有值(IP 地址或主機名),則說明您的環境具有可用於 Ingress 網關的外部負載均衡器。如果 EXTERNAL-IP 值是 <none>(或一直是 <pending> ),則說明可能您的環境並沒有為 Ingress 網關提供外部負載均衡器的功能。

可以通過以下方法添加外部IP

kubectl edit  service istio-ingressgateway -n istio-system

kubectl get  service istio-ingressgateway -n istio-system

 

 二、建立deployment、service、Gateway、VirtualService

1)新建nginx-istio-test.yaml

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: nginx-app
spec:
  replicas: 1
  template:
    metadata:
      annotations:
        sidecar.istio.io/inject: "true"
      labels:
        app: nginx-app
    spec:
      containers:
        - name: nginx-app
          image: nginx
          imagePullPolicy: IfNotPresent
          ports:
            - containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
  name: nginx-svc
  labels:
    svcname: nginx-svc
spec:
  ports:
  - port: 8088
    protocol: TCP
    targetPort: 80
  selector:
    app: nginx-app

---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: nginx-gateway
spec:
  selector:
    istio: ingressgateway # use Istio default gateway implementation
  servers:
  - port:
      number: 80
      name: nginx-http
      protocol: HTTP
    hosts:
    - istio-nginx.boshen.com

---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: nginx-vs
spec:
  hosts:
  - istio-nginx.boshen.com
  gateways:
  - nginx-gateway
  http:
  - match:
    - uri:
        prefix: /
    route:
    - destination:
        port:
          number: 8088
        host: nginx-svc

在Gateway中

VirtualService 映射的就是 Envoy 中的 Http Route Table,大家可以注意到上面的 VirtualService 配置文件中有一個 gateways 字段,如果有這個字段,就表示這個 Http Route Table 是綁在 ingressgateway 的 Listener 中的;如果沒有這個字段,就表示這個 Http Route Table 是綁在 Istio 所管理的所有微服務應用的 Pod 上的。

2)部署yaml

kubectl apply -f nginx-istio-test.yaml

3)在k8s的master節點和node節點的/etc/hosts里面加上以下內容

 

4)在windows機器上的C:\Windows\System32\drivers\etc\hosts里面加上

5)在瀏覽器訪問:http://istio-nginx.boshen.com/

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM