其他分享
首页 > 其他分享> > Kubernetes--DaemonSet调度

Kubernetes--DaemonSet调度

作者:互联网

一、DaemonSet

   DaemonSet是kubernetes 1.2版本新增的一种资源对象,用于管理集群中每个Node上仅允许一份Pod的副本实例。

    

这种用法适用场景:    DaemonSet的Pod调度策略与RC类似,除了使用系统内置的算法在每个Node上进行调度,也可以在Pod的定义中使用NodeSelector或NodeAffinity来指定满足条件的Node范围进行调度。    为每个Node启动一个fluentd容器,挂载物理机两个目录 /var/log 和 /var/lib/docker/containers。
apiVersion: apps/v1
kind: DaemonSet
metadata:
  name: fluentd-cloud-logging
  namespace: kube-system
  labels:
    k8s-app: fluentd-cloud-logging
spec:
  template:
    metadata:
      namespace: kube-system
      labels:
        k8s-app: fluentd-cloud-logging
    spec:
      containers:
      - name: fluentd-cloud-logging
        image: gcr.io/google_containers/fluentd-elasticsearch:1.17
        resources:
          limits:
            cpu: 100m
            memory: 200Mi
        env:
        - name: FLUENTD_ARGS
          value: -q
        volumeMounts:
        - name: varlog
          mountPath: /var/log
          readOnly: false
        - name: containers
          mountPath: /var/lib/docker/containers
          readOnly: false
      volumes:
      - name: containers
        hostPath:
          path: /var/lib/docker/containers
      - name: varlog
        hostPath:
          path: /var/log

 

标签:Node,fluentd,name,Kubernetes,--,DaemonSet,var,containers
来源: https://blog.csdn.net/GaoChuang_/article/details/121187924