简体   繁体   English

Kubernetes。 kubernetes 节点之间支持的最大距离/延迟是多少?

[英]kubernetes. What is the maximum distance/latency supported between kubernetes nodes?

I want to create a kubernetes cluster.我想创建一个 kubernetes 集群。

I want to have a single cluster with master, worker and proxy nodes in High Availability with nodes in both locations.我希望在高可用性中拥有一个包含主节点、工作节点和代理节点的单个集群,并且两个位置都有节点。

Is it documented the maximum distance or latency supported between locations?是否记录了位置之间支持的最大距离或延迟? Additionally I would appreciate links to official documentation, I couldn't find anything related.另外,我很感激官方文档的链接,我找不到任何相关的内容。

Thank you.谢谢你。

There is no latency limitation between nodes in kubernetes cluster. kubernetes 集群中的节点之间没有延迟限制。 They are configurable parameters.它们是可配置的参数。

For kubelet on worker node it is:对于工作节点上的kubelet ,它是:

--node-status-update-frequency duration    Specifies how often kubelet posts node status to master. Note: be cautious when changing the constant, it must work with nodeMonitorGracePeriod in nodecontroller. (default 10s)

For controller-manager on master node they are:对于主节点上的控制器管理器,它们是:

  --node-monitor-grace-period duration    Amount of time which we allow running Node to be unresponsive before marking it unhealthy. Must be N times more than kubelet's nodeStatusUpdateFrequency, where N means number of retries allowed for kubelet to post node status. (default 40s)
  --node-monitor-period duration          The period for syncing NodeStatus in NodeController. (default 5s)
  --node-startup-grace-period duration    Amount of time which we allow starting Node to be unresponsive before marking it unhealthy. (default 1m0s)

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

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