Docker Kubernetes hostPort 代理轉發

Docker Kubernetes  hostPort 代理轉發nginx

hostPort:docker

  • 1. 相似docker -p 映射宿主級端口到容器。
  • 2. 容器所在的主機暴露端口轉發到指定容器中。
  • 3. hostport是經過代理轉發的。

環境:vim

  • 系統:Centos 7.4 x64
  • Docker版本:18.09.0
  • Kubernetes版本:v1.8
  • 管理節點:192.168.1.79
  • 工做節點:192.168.1.78
  • 工做節點:192.168.1.77

一、建立yaml文件api

vim hostport.yaml瀏覽器

apiVersion: v1
kind: Pod
metadata:
  name: nginx-pod2
  labels:
    app: nginx
spec:
  containers:
  - name: nginx
    image: nginx:1.10
    ports:
    - name: http
      containerPort: 80
      hostIP: 0.0.0.0
      hostPort: 89
      protocol: TCP
    - name: https
      containerPort: 443
      hostIP: 0.0.0.0
      hostPort: 443
      protocol: TCP
# 指定api版本
apiVersion: v1
# 指定須要建立的資源對象
kind: Pod
metadata:
# 源數據、能夠寫name,命名空間,對象標籤
  name: nginx-pod2
# 指定標籤
  labels:
# 標籤名
    app: nginx
# 描述資源相關信息
spec:
# 指定容器信息
  containers:
# 容器名
  - name: nginx
# 容器鏡像名
    image: nginx:1.10
# hostport管理
    ports:
# 指定http端口名稱
    - name: http
# 指定容器端口
      containerPort: 80
# hsotip監聽IP,可經過哪些宿主級ip訪問
      hostIP: 0.0.0.0
# 宿主級暴露端口,它會映射到containerport的容器端口
      hostPort: 89
# 指定協議類型
      protocol: TCP
# 指定https
    - name: https
# 指定容器端口
      containerPort: 443
# hsotip監聽IP,可經過哪些宿主級ip訪問
      hostIP: 0.0.0.0
# 宿主級暴露端口,它會映射到containerport的容器端口
      hostPort: 443
# 指定協議類型
      protocol: TCP
文件註解

注:可代理多個端口,這裏代理的容器端口爲80與443。app

二、建立容器tcp

kubectl create -f hostport.yaml
命令:kubectl get pods

NAME                    READY     STATUS    RESTARTS   AGE
nginx-pod2              1/1       Running   0          1m
查看是否運行成功
命令:ubectl get pods -o wide

NAME                    READY     STATUS    RESTARTS   AGE       IP           NODE
nginx-pod2              1/1       Running   0          2m        172.17.2.4   192.168.1.78
查看分配工做節點
命令:netstat -lnpt | grep 89
tcp6       0      0 :::89                   :::*                    LISTEN      13373/docker-proxy  

命令:netstat -lnpt | grep 443
tcp6       0      0 :::443                  :::*                    LISTEN      13359/docker-proxy
工做節點查看端口

三、瀏覽器測試ide

相關文章
相關標籤/搜索