如何访问外部 IP 上的 Pod

时间:2021-03-31 09:00:54

标签: linux nginx kubernetes

我在名为 kube-nginx 的控制平面上运行了一个 pod,并转发端口。而且我是 kubernetes 的大一新生。

[root@k8smaster ~]# kubectl version
Client Version: version.Info{Major:"1", Minor:"20", GitVersion:"v1.20.4", GitCommit:"e87da0bd6e03ec3fea7933c4b5263d151aafd07c", GitTreeState:"clean", BuildDate:"2021-02-18T16:12:00Z", GoVersion:"go1.15.8", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"20", GitVersion:"v1.20.4", GitCommit:"e87da0bd6e03ec3fea7933c4b5263d151aafd07c", GitTreeState:"clean", BuildDate:"2021-02-18T16:03:00Z", GoVersion:"go1.15.8", Compiler:"gc", Platform:"linux/amd64"}

[root@k8smaster ~]# cat /opt/pod.yaml
apiVersion: v1
kind: Pod
metadata:
  name: kube-nginx
spec:
  containers:
  - name: nginx
    image: nginx
[root@k8smaster ~]# kubectl get pod
NAME         READY   STATUS    RESTARTS   AGE
kube-nginx   1/1     Running   0          38m
[root@k8smaster ~]# kubectl port-forward pod/kube-nginx 10086:80
Forwarding from 127.0.0.1:10086 -> 80
Forwarding from [::1]:10086 -> 80

我可以访问本地主机上的 pod,但无法访问外部 IP 上的 pod。

[root@k8smaster opt]# ip a | awk '/^2: ens33/,/^3: docker/{print $2}' | sed -n '3P'
192.168.80.201/24
[root@k8smaster opt]# nc -vz localhost 10086
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Connected to ::1:10086.
Ncat: 0 bytes sent, 0 bytes received in 0.01 seconds.

在外部 IP 主机上,我可以 ping 通 k8smaster,但无法访问其中的 pod。

[root@k8snode01 opt]# ping -c 3 192.168.80.201
PING 192.168.80.201 (192.168.80.201) 56(84) bytes of data.
64 bytes from 192.168.80.201: icmp_seq=1 ttl=64 time=0.367 ms
64 bytes from 192.168.80.201: icmp_seq=2 ttl=64 time=0.215 ms
64 bytes from 192.168.80.201: icmp_seq=3 ttl=64 time=0.248 ms

--- 192.168.80.201 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2001ms
rtt min/avg/max/mdev = 0.215/0.276/0.367/0.068 ms

[root@k8snode01 opt]# ip a | awk '/^2: ens33/,/^3: docker/{print $2}' | sed -n '3p'
192.168.80.202/24
[root@k8snode01 opt]# nc -nvz 192.168.80.201 10086
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: No route to host.

路由表如下

[root@k8snode01 opt]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.80.2    0.0.0.0         UG    100    0        0 ens33
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
192.168.16.128  192.168.80.201  255.255.255.192 UG    0      0        0 ens33
192.168.80.0    0.0.0.0         255.255.255.0   U     100    0        0 ens33

防火墙设置

[root@k8smaster ~]# iptables-save | egrep -w -- INPUT
:INPUT ACCEPT [78784:15851659]
-A INPUT -j INPUT_direct
:INPUT ACCEPT [0:0]
:INPUT ACCEPT [61299:11943644]
-A INPUT -j INPUT_direct
:INPUT ACCEPT [0:0]
:cali-INPUT - [0:0]
-A INPUT -m comment --comment "cali:Cz_u1IQiXIMmKD4c" -j cali-INPUT
-A INPUT -m conntrack --ctstate NEW -m comment --comment "kubernetes externally-visible service portals" -j KUBE-EXTERNAL-SERVICES
-A INPUT -j KUBE-FIREWALL
-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -j INPUT_direct
-A INPUT -j INPUT_ZONES_SOURCE
-A INPUT -j INPUT_ZONES
-A INPUT -m conntrack --ctstate INVALID -j DROP
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A cali-INPUT -p udp -m comment --comment "cali:w7ud0UgQSEi_zKuQ" -m comment --comment "Allow VXLAN packets from whitelisted hosts" -m multiport --dports 4789 -m set --match-set cali40all-vxlan-net src -m addrtype --dst-type LOCAL -j ACCEPT
-A cali-INPUT -p udp -m comment --comment "cali:4cgmbdWsLmozYhJh" -m comment --comment "Drop VXLAN packets from non-whitelisted hosts" -m multiport --dports 4789 -m addrtype --dst-type LOCAL -j DROP
-A cali-INPUT -i cali+ -m comment --comment "cali:t45BUBhpu3Wsmi1_" -g cali-wl-to-host
-A cali-INPUT -m comment --comment "cali:NOmsycyknYZaGOFf" -m mark --mark 0x10000/0x10000 -j ACCEPT
-A cali-INPUT -m comment --comment "cali:Or0B7eoenKO2p8Bf" -j MARK --set-xmark 0x0/0xf0000
-A cali-INPUT -m comment --comment "cali:AmIfvPGG2lYUK6mj" -j cali-from-host-endpoint
-A cali-INPUT -m comment --comment "cali:79fWWn1SpufdO7SE" -m comment --comment "Host endpoint policy accepted packet." -m mark --mark 0x10000/0x10000 -j ACCEPT

[root@k8smaster ~]# firewall-cmd --list-all
trusted (active)
  target: ACCEPT
  icmp-block-inversion: no
  interfaces: ens33
  sources:
  services:
  ports:
  protocols:
  masquerade: no
  forward-ports:
  source-ports:
  icmp-blocks:
  rich rules:

如何排除故障?

3 个答案:

答案 0 :(得分:1)

监听所有地址的10086端口,转发到pod中的80

    $role = Role::create(['name' => 'Elevated User']);
    $role = Role::create(['name' => 'User']);
    $role = Role::create(['name' => 'Admin']);

答案 1 :(得分:0)

您可以做的是附加一个服务类型负载平衡,如下所示:

kind: Service
apiVersion: v1
metadata:
  name: kube-nginx
  namespace: <your namespace>
  labels:
    app: kube-nginx
  annotations:
    service.beta.kubernetes.io/aws-load-balancer-ssl-cert: "your certificate"
    service.beta.kubernetes.io/aws-load-balancer-ssl-negotiation-policy: "ELBSecurityPolicy-TLS-1-2-2017-01"
    service.beta.kubernetes.io/aws-load-balancer-backend-protocol: "tcp"
    service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "443"
    service.beta.kubernetes.io/aws-load-balancer-proxy-protocol: '*'
    service.beta.kubernetes.io/aws-load-balancer-connection-idle-timeout: '3600'
spec:
  type: LoadBalancer
  selector:
    app: kube-nginx
  ports:
  - name: http
    port: 80
    targetPort: proxy
  - name: https
    port: 443
    targetPort: http

答案 2 :(得分:0)

记住以下声明:

<块引用>

我是 kubernetes 的大一新生。

我认为应该解决一些问题:

  • 对这个问题的一般想法
  • $ kubectl port-forward ...
  • 工作示例

关于这个问题的一般想法

Kubernetes 作为一个平台,有一个特定的对象来完成某些事情/任务。您已经创建了一个名为 Podkube-nginx,它在 Nodes 上生成。

要为内部/外部来源公开 Pods(如您的 kube-nginx),您需要使用 Service。您可以通过以下官方文档阅读更多相关信息:

<块引用>

服务

将在一组 Pod 上运行的应用程序公开为网络服务的抽象方法。 使用 Kubernetes,您无需修改​​应用程序即可使用不熟悉的服务发现机制。 Kubernetes 为 Pod 提供了自己的 IP 地址和一组 Pod 的单一 DNS 名称,并且可以在它们之间进行负载平衡。

-- Kubernetes.io: Docs: Concepts: Services networking: Service

您的 Pod 定义是正确的,它将生成一个带有 Pod 图像的 nginx,但 Kubernetes 将无法将其公开给外部源(除了 {{1} } 由于清单中缺少某些字段,我将在稍后解决。

应该可以用 $ kubectl port-forward 公开的最小示例:

Services

我也认为您应该使用其他 Kubernetes 对象,例如 apiVersion: v1 kind: Pod metadata: name: kube-nginx labels: app: nginx spec: containers: - name: nginx image: nginx

此外,您还没有在清单中添加任何内容来强制将 Deployment 安排在 Pod 上。它可以安排在 k8smaster。您可以检查您的 k8snode01 正在运行的 Node

  • Pod
$ kubectl get pods/kube-nginx -o wide

请参阅 NAME READY STATUS RESTARTS AGE IP --> NODE <-- NOMINATED NODE READINESS GATES kube-nginx 1/1 Running 0 84m 10.32.2.7 --> raven-6k6m <-- <none> <none> 列。


Node

进入 $ kubectl port-forward ... 命令的主题。这是一个猜测,但我认为解释是它将在运行此命令的主机上永久公开 kubectl port-forward pod/kube-nginx 10086:80 kube-nginx 端口:Pod。是的,它会公开您的 10086,但在此设置中仅在本地主机上运行,​​只要命令正在运行,它就会运行。 要公开您的工作负载,您应该使用前面提到的 Pod如果您想使用 Services 公开您的 Pod,您应该使用用户@Phillipe 指出的命令:

  • $ kubectl port-forward

kubectl port-forward --address 0.0.0.0 pod/kube-nginx 10086:80 将允许来自您的 --address 0.0.0.0 的传入连接(假设没有防火墙丢弃请求)。

引用 Stackoverflow.com 的另一个答案:

<块引用>

LAN 生成特定的 Kubernetes API request。这意味着运行它的系统需要访问 API 服务器,并且任何流量都将通过单个 HTTP 连接进行隧道传输。

拥有它对于调试非常有用(如果一个特定的 pod 正在运行,您可以直接连接到它;在微服务环境中,您可以与一个不会公开的后端服务进行通信),但这不是替代方案设置服务对象。当我使用 kubectl port-forward 时,它明显比通过服务连接到 pod 慢,而且我发现该命令在几分钟后就停止了。同样,这些对于调试来说不是大问题,但它们不是我想要的生产系统。

-- Stackoverflow.com: Answer: How kubectl port-forward works


工作示例

假设您的集群配置正确,因为问题中没有关于集群配置过程的步骤,您可以使用以下示例将您的 kubectl port-forward kube-nginx 公开给外部来源。

Pod

在本例中,您将生成一个带有 apiVersion: v1 kind: Pod metadata: name: kube-nginx labels: app: nginx spec: containers: - name: nginx image: nginx --- apiVersion: v1 kind: Service metadata: name: kube-nginx-service spec: selector: app: nginx # <-- this needs to match .metadata.labels field in Pod type: NodePort ports: - protocol: TCP port: 80 # <-- port inside of the cluster targetPort: 80 # <-- port that app is listening on nodePort: 30080 # <-- from 30000 to 32767 on the node (can be changed) 图像的 Pod,并允许每个 nginx 上的端口:30080 上的连接到达 Node(即Pod

类型为 $ curl 192.168.0.114:30080)

Service 也可以使用 LoadBalancer 分配,但由于缺乏关于 Kubernetes 设置的信息,可能很难指出正确的解决方案(在-premises=External IP,否则请查阅提供者文档)。


我还鼓励您查看以下文档以获得更多参考/最佳实践等: