Node-exporter 不在集群的 3 个节点上 运行
Node-exporter is not running on 3 nodes of the cluster
我 运行 node-exporter 作为 AWS EKS 中的守护进程,今天发现它存在于 10 个节点上,但是我的集群有 13 个节点。
如何确保它也在 3 个丢失的节点上 运行s?
容忍守护进程使用:
tolerations:
- effect: NoSchedule
operator: Exists
Per Docs 默认情况下,DeamonSets 已经有一些容忍度。我发布的 no-key 确保您涵盖了 NoSchedule
:
的所有可能原因
An empty key with operator Exists matches all keys, values and effects
which means this will tolerate everything.
这是监控守护进程和日志收集器的常用设置。
我 运行 node-exporter 作为 AWS EKS 中的守护进程,今天发现它存在于 10 个节点上,但是我的集群有 13 个节点。
如何确保它也在 3 个丢失的节点上 运行s?
容忍守护进程使用:
tolerations:
- effect: NoSchedule
operator: Exists
Per Docs 默认情况下,DeamonSets 已经有一些容忍度。我发布的 no-key 确保您涵盖了 NoSchedule
:
An empty key with operator Exists matches all keys, values and effects which means this will tolerate everything.
这是监控守护进程和日志收集器的常用设置。