怎样运行自己的DaemonSet

62次阅读
没有评论

共计 784 个字符,预计需要花费 2 分钟才能阅读完成。

这期内容当中丸趣 TV 小编将会给大家带来有关怎样运行自己的 DaemonSet,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

以 Prometheus Node Exporter 为例演示如何运行自己的 DaemonSet。

Prometheus 是流行的系统监控方案,Node Exporter 是 Prometheus 的 agent,以 Daemon 的形式运行在每个被监控节点上。

如果是直接在 Docker 中运行 Node Exporter 容器,命令为:

docker run -d \
 -v  /proc:/host/proc  \
 -v  /sys:/host/sys  \
 -v  /:/rootfs  \
 --net=host \ prom/node-exporter \
 --path.procfs /host/proc \
 --path.sysfs /host/sys \
 --collector.filesystem.ignored-mount-points  ^/(sys|proc|dev|host|etc)($|/)

将其转换为 DaemonSet 的 YAML 配置文件 node_exporter.yml:

① 直接使用 Host 的网络。
② 设置容器启动命令。
③ 通过 Volume 将 Host 路径  /proc、/sys  和  /  映射到容器中。我们将在后面详细讨论 Volume。

执行  kubectl apply -f node_exporter.yml:

DaemonSet node-exporter-daemonset  部署成功,k8s-node1 和 k8s-node2 上分别运行了一个 node exporter Pod。

上述就是丸趣 TV 小编为大家分享的怎样运行自己的 DaemonSet 了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注丸趣 TV 行业资讯频道。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-25发表,共计784字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)