原文地址:K8S的1.24.0以上kube-proxy不监听nodeport端口问题
起因
最近在测试1.24+和1.25+集群时,发现即便 Service 使用 nodeport 暴露,而我在测试1.23.15的时候发现nodeport是正常监听。
github回答
kube-proxy: remove port opener by khenidak · Pull Request #108496 · kubernetes/kubernetes (github.com)
nodeport Port is not displayed · Issue #115568 · kubernetes/kubernetes (github.com)
说明
github的回答显示,在新版本中已经删除了kube-proxy打开端口套接字部分,但是会在iptables中进行转发,故不影响访问。
阿里云文档说明原因
ACK发布Kubernetes1.24版本说明和解读_容器服务 Kubernetes 版 ACK-阿里云帮助中心
Kubernetes 1.24及以后的版本,去除了kube-proxy监听NodePort的逻辑,在NodePort与内核
net.ipv4.ip_local_port_range
范围有冲突的情况下,可能会导致偶发的TCP无法连接的情况,导致健康检查失败、业务异常等问题。升级前,请确保集群没有NodePort端口与任意节点net.ipv4.ip_local_port_range
范围存在冲突。更多信息,请参见Kubernetes社区PR。
验证
[root@node1 ~]# kubectl version
WARNING: This version information is deprecated and will be replaced with the output from kubectl version --short. Use --output=yaml|json to get the full version.
Client Version: version.Info{Major:"1", Minor:"25", GitVersion:"v1.25.4", GitCommit:"872a965c6c6526caa949f0c6ac028ef7aff3fb78", GitTreeState:"clean", BuildDate:"2022-11-09T13:36:36Z", GoVersion:"go1.19.3", Compiler:"gc", Platform:"linux/arm64"}
Kustomize Version: v4.5.7
Server Version: version.Info{Major:"1", Minor:"25", GitVersion:"v1.25.4", GitCommit:"872a965c6c6526caa949f0c6ac028ef7aff3fb78", GitTreeState:"clean", BuildDate:"2022-11-09T13:29:58Z", GoVersion:"go1.19.3", Compiler:"gc", Platform:"linux/arm64"}
[root@node1 ~]# kubectl get svc |grep sen
sentinel NodePort 10.96.123.120 <none> 8719:30008/TCP,8080:30007/TCP 4d18h
[root@node1 ~]# iptables -S -t nat | grep 30008
-A KUBE-NODEPORTS -p tcp -m comment --comment "default/sentinel:api" -m tcp --dport 30008 -j KUBE-EXT-GTMNQIN2RZFIXRA7
[root@node1 ~]# curl http://127.0.0.1:30008
Invalid command
[root@node1 ~]#
[root@node1 ~]# netstat -lnpt |grep 30008
[root@node1 ~]# ss -lnpt | grep 30008
验证发现确实可以访问,但是在主机上查不出来,已经不见听nodeport端口了。
以上是个人整合github资料的见解,如有不同看法欢迎留言。