设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 创业者
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

Kubernetes节点之间的ping监控(4)

发布时间:2019-10-18 03:29 所属栏目:21 来源:dummy
导读:最后,我们需要DaemonSet来运行在集群中的所有实例: apiVersion:apps/v1 kind:DaemonSet metadata: name:ping-exporter namespace:d8-system spec: updateStrategy: type:RollingUpdate selector: matchLabels: na

最后,我们需要DaemonSet来运行在集群中的所有实例:

  1. apiVersion: apps/v1 
  2. kind: DaemonSet 
  3. metadata: 
  4. name: ping-exporter 
  5. namespace: d8-system 
  6. spec: 
  7. updateStrategy: 
  8. type: RollingUpdate 
  9. selector: 
  10. matchLabels: 
  11.   name: ping-exporter 
  12. template: 
  13. metadata: 
  14.   labels: 
  15.     name: ping-exporter 
  16. spec: 
  17.   terminationGracePeriodSeconds: 0 
  18.   tolerations: 
  19.   - operator: "Exists" 
  20.   hostNetwork: true 
  21.   serviceAccountName: ping-exporter 
  22.   priorityClassName: cluster-low 
  23.   containers: 
  24.   - image: private-registry.flant.com/ping-exporter/ping-exporter:v1 
  25.     name: ping-exporter 
  26.     env: 
  27.       - name: MY_NODE_NAME 
  28.         valueFrom: 
  29.           fieldRef: 
  30.             fieldPath: spec.nodeName 
  31.       - name: PROMETHEUS_TEXTFILE_DIR 
  32.         value: /node-exporter-textfile/ 
  33.       - name: PROMETHEUS_TEXTFILE_PREFIX 
  34.         value: ping-exporter_ 
  35.     volumeMounts: 
  36.       - name: textfile 
  37.         mountPath: /node-exporter-textfile 
  38.       - name: config 
  39.         mountPath: /config 
  40.   volumes: 
  41.     - name: textfile 
  42.       hostPath: 
  43.         path: /var/run/node-exporter-textfile 
  44.     - name: config 
  45.       configMap: 
  46.         name: ping-exporter-config 
  47.   imagePullSecrets: 
  48.   - name: private-registry 

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读