What is an 'endpoint' in Kubernetes?

后端 未结 6 1439
清歌不尽
清歌不尽 2021-01-31 07:22

I am new to Kubernetes and started reading through the documentation. There often the term \'endpoint\' is used but the documentation lacks an explicit definition.

What

6条回答
  •  时光取名叫无心
    2021-01-31 07:58

    1. Endpoints track the IP Addresses of the objects the service send traffic to.
    2. When a service selector matches a pod label, that IP Address is added to your endpoints.

    Source: https://theithollow.com/2019/02/04/kubernetes-endpoints/

提交回复
热议问题