您如何称呼在Kubernetes中的Pod中运行的应用程序?
在典型的理论系统中,我将其称为组成系统 nodes 的不同应用程序。但是,这在kubernetes群集系统中令人困惑,原因有两个:
- “ node.js”通常缩短为“ node”,而我系统中的并非所有 nodes 是“ node.js”过程。
- 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:
- "Node.js" is often shortened to "node", and not all of the nodes in my system are "Node.js" processes.
- 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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,这将是“服务”(尽管它与K8S服务发生冲突)或“微服务”
Usually it would be a "service" (although it clashes with k8s service) or a "microservice"
Pods包含一个(或更稀有)应用程序:
source
在kubernetes Universe中,节点是群集正在运行的物理或虚拟机。豆荚在节点上运行。我建议避免应用程序的术语。
Pods contain one (or rarer more) application(s):
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.