1、port
port是k8s集群内部(node节点)访问service的端口,即通过clusterIP: port可以访问到某个service。

2、nodePort
nodePort是外部访问k8s集群中service的端口,通过nodeIP: nodePort可以从外部(浏览器/其他集群)访问到某个service。

3、targetPort
targetPort是pod的端口,从port和nodePort来的流量经过kube-proxy流入到后端pod的targetPort上,最后进入容器(一个pod中可以有多个容器)。

4、containerPort
containerPort是pod内部容器的端口,targetPort映射到containerPort。

port、nodePort、targetPort是在service中配置。 containerPort是在pod中配置


forest
0 声望1 粉丝