endpoint
标题 Endpoint是什么?endpoint是K8s的集群中的一个资源对象,存储在Etcd中,用来记录一个service对应所有的pod的Ip访问地址.service配置了senector,endpoint controller会自动创建对应的endpoint,否则不会生成endpoint对象.比如,集群中创建了一个mysql的service,就会生成一个名为mysql的endpoint,end
·
标题 Endpoint是什么?
endpoint是K8s的集群中的一个资源对象,存储在Etcd中,用来记录一个service对应所有的pod的Ip访问地址.service配置了selector,endpoint controller 会自动创建对应的endpoint,否则不会生成endpoint对象.
比如,集群中创建了一个mysql的service,就会生成一个名为mysql的endpoint,endopoint就是service关联的pod的ip地址和提供在这个服务的container端口。
endpoint是实现实际服务的端点集合。
当kubernete在创建service的过程中,会根据servcice的标签选择器(label selector)来查找pod,据此也创建出和service同名的endpoint,当pod的IP地址发生变化后,endpoint的内容也随之变化.service收到请求后就通过endpoint找到请求转发的地址。
简单总结:endpoint是一个列表,存储了对应service后端的pod名称和IP的列表,并且提供了将请求转发到pod上的实际能力。
更多推荐
已为社区贡献1条内容
所有评论(0)