在 kubernetes 集群上创建 daemonset 的问题

Problem with daemonset creation on kubernetes cluster

我正在运行在主节点上执行以下命令,以在 Kubernetes 集群上创建守护程序集。

$ kubectl apply -f https://k8s.io/examples/controllers/daemonset.yaml

我认为它已成功创建,因为显示了以下消息,

daemonset.apps/fluentd-elasticsearch created

但之后当我 运行,

$ kubectl get daemonsets
No resources found in default namespace

所以我尝试重新创建相同的但这次它显示,

$ kubectl apply -f https://k8s.io/examples/controllers/daemonset.yaml
daemonset.apps/fluentd-elasticsearch unchanged

我不明白这里发生了什么。非常感谢解释。

它正在 kube-system 命名空间中部署,因为部署 yaml 具有 namespace: kube-system

kubectl get daemonsets 命令显示来自 default 命名空间的 daemonsets,因此它给出 No resources found

您需要在命令中添加-n参数来检查在特定命名空间中创建的daemonsets,例如kube-system

kubectl get daemonsets -n kube-system

当您转到官方 kubernetes 文档并检查此 link DaemonSet 时,您将看到您的 DaemonSet 的命名空间。

apiVersion: apps/v1
kind: DaemonSet
metadata:
  name: fluentd-elasticsearch
  namespace: kube-system
  labels:
    k8s-app: fluentd-logging
spec:
  selector:
    matchLabels:
      name: fluentd-elasticsearch
  template:
    metadata:
      labels:
        name: fluentd-elasticsearch
    spec:
      tolerations:
      # this toleration is to have the daemonset runnable on master nodes
      # remove it if your masters can't run pods
      - key: node-role.kubernetes.io/master
        effect: NoSchedule
      containers:
      - name: fluentd-elasticsearch
        image: quay.io/fluentd_elasticsearch/fluentd:v2.5.2
        resources:
          limits:
            memory: 200Mi
          requests:
            cpu: 100m
            memory: 200Mi
        volumeMounts:
        - name: varlog
          mountPath: /var/log
        - name: varlibdockercontainers
          mountPath: /var/lib/docker/containers
          readOnly: true
      terminationGracePeriodSeconds: 30
      volumes:
      - name: varlog
        hostPath:
          path: /var/log
      - name: varlibdockercontainers
        hostPath:
          path: /var/lib/docker/containers

运行

kubectl get daemonsets —all-namespaces -o wide

这将为您提供命名空间和工作节点上存在的所有守护进程集

你用来创建守护进程的 URL 在 kube-system namespace 中创建了一个守护进程集。而不是查看默认名称 space 中的 daemonset。使用以下命令。它将显示所有 daemonset 以及名称 space,它位于 运行.

Kubectl get ds --all-namespaces