如何仅使用 kubectl 获取内部 kubernetes 端点名称?

发布于 2025-01-10 01:12:29 字数 1549 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏月而来 2025-01-17 01:12:29
  1. 端点是一种获取一个或多个 IP 地址的资源更多动态分配给它的 Pod 以及端口。可以使用以下命令查看端点
    kubectl 获取端点。

  2. 端点资源由 kubernetes 服务引用,以便该服务记录 pod 的内部 IP,以便能够与他们沟通。

     $ kubectl 获取端点
    
    名称 端点 年龄 
    Kubernetes 192.168.64.13:8443 10d
    

与端点关联的类似 kubectl 命令:

kubectl描述pod - 并观察pod的IP地址

kubectl get ep - 并观察分配给您的端点的 IP 地址

kubectl describe service myServiceName - 并观察与您的服务关联的端点。

有关 kubectl 命令的更多信息,请参阅链接

  1. An endpoint is a resource that gets IP addresses of one or more pods dynamically assigned to it, along with a port. An endpoint can be viewed using
    kubectl get endpoints.

  2. An endpoint resource is referenced by a kubernetes service, so that the service has a record of the internal IPs of pods in order to be able to communicate with them.

     $ kubectl get endpoints
    
    NAME          ENDPOINTS          AGE 
    kubernetes  192.168.64.13:8443   10d
    

Similar kubectl commands associated with endpoints:

kubectl describe pods - and observe the IP addresses of your pods

kubectl get ep - and observe the IP addresses assigned to your endpoint

kubectl describe service myServiceName - and observe the Endpoints associated with your service.

Refer to the link for more information on kubectl commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文