您如何称呼在Kubernetes中的Pod中运行的应用程序?

发布于 2025-02-13 02:42:05 字数 285 浏览 1 评论 0原文

在典型的理论系统中,我将其称为组成系统 nodes 的不同应用程序。但是,这在kubernetes群集系统中令人困惑,原因有两个:

  1. “ node.js”通常缩短为“ node”,而我系统中的并非所有 nodes 是“ node.js”过程。
  2. Kubernetes使用“节点”一词来指代群集中的物理组件。

因此,问题是,哪种术语用于描述您将在POD上运行的主题?他们是项目吗?过程?应用节点?申请?

以上所有声音对我来说都没有。

In a typical theoretical system, I would call the different applications that make up the system nodes. However this is confusing in a Kubernetes cluster system for two reasons:

  1. "Node.js" is often shortened to "node", and not all of the nodes in my system are "Node.js" processes.
  2. Kubernetes uses the word "node" to refer to physical components in the cluster.

So the question is, what terminology is used to describe the subject that you would run on a pod? Are they projects? Processes? Application nodes? Applications?

None of the above sound right to me.

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

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

发布评论

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

评论(2

无声情话 2025-02-20 02:42:06

通常,这将是“服务”(尽管它与K8S服务发生冲突)或“微服务”

Usually it would be a "service" (although it clashes with k8s service) or a "microservice"

乖不如嘢 2025-02-20 02:42:05

Pods包含一个(或更稀有)应用程序:

pod模型一个特定于应用程序的“逻辑主机”:它包含一个或多个应用程序容器,该容器相对紧密耦合。

source

在kubernetes Universe中,节点是群集正在运行的物理或虚拟机。豆荚在节点上运行。我建议避免应用程序的术语。

Pods contain one (or rarer more) application(s):

A Pod models an application-specific "logical host": it contains one or more application containers which are relatively tightly coupled.

Source

In the Kubernetes universe, Nodes are the physical or virtual machines that your cluster is running on. Pods run on the Nodes. I suggest to avoid the term Node for applications.

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