简体   繁体   English

Windows K8s 节点应该有 aws-node 和 kube-proxy pod 吗?

[英]Should Windows K8s nodes have aws-node & kube-proxy pods?

I have this mixed cluster which shows all the nodes as Ready (both Windows & Linux ones).我有这个混合集群,它将所有节点显示为就绪(Windows 和 Linux 节点)。 However, only the Linux nodes have aws-node & kube-proxy pods.但是,只有 Linux 个节点有 aws-node 和 kube-proxy pod。 I RDPed into a Windows node and can see a kube-proxy service.我通过 RDP 连接到一个 Windows 节点,可以看到一个 kube-proxy 服务。

My question remains: do the Windows nodes need aws-node & kube-proxy pods in the kube-system namespace or do they work differently than Linux ones?我的问题仍然存在:Windows 节点是否需要 kube-system 命名空间中的 aws-node 和 kube-proxy pod,或者它们的工作方式是否与 Linux 不同?

kube-proxy pods are part of default installation of Kube.netes. kube-proxy pod 是 Kube.netes 默认安装的一部分。 They are automaticaly created, and are needed on both Linux and Windows.它们是自动创建的,Linux 和 Windows 都需要它们。

kube-proxy is a.network proxy that runs on each node in your cluster, implementing part of the Kube.netes Service concept. kube-proxy 是一个运行在集群中每个节点上的网络代理,实现了 Kube.netes 服务概念的一部分。

kube-proxy maintains.network rules on nodes. kube-proxy 在节点上维护.network 规则。 These.network rules allow.network communication to your Pods from.network sessions inside or outside of your cluster.这些网络规则允许从集群内部或外部的网络会话与您的 Pod 进行网络通信。 [ source ] [ 来源]

aws-node pod is a part of AWS CNI plugin for Kube.netes aws-node pod 是 Kube.netes 的 AWS CNI 插件的一部分

The Amazon VPC Container Network Interface (CNI) plugin for Kube.netes is deployed with each of your Amazon EC2 nodes in a Daemonset with the name aws-node . Kube.netes 的 Amazon VPC 容器网络接口 (CNI) 插件与您的每个 Amazon EC2 节点一起部署在名为aws-node的 Daemonset 中。 The plugin consists of two primary components:该插件由两个主要组件组成:
[...] [ source ] [...] [ 来源]

It is currently only supported on Linux. Windows nodes are using a different CNI plugin - vpc-shared-eni目前仅支持 Linux。Windows 节点使用不同的 CNI 插件 - vpc-shared-eni

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM