0

我在主节点上运行以下命令,以在 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

我不明白这里发生了什么。一个解释将不胜感激。

4

4 回答 4

2

kube-system由于部署 yaml 已部署在命名空间中namespace: kube-system

kubectl get daemonsets命令daemonsetsdefault命名空间显示,因此它给出No resources found

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

kubectl get daemonsets -n kube-system
于 2020-07-17T05:41:00.907 回答
2

kubectl get daemonsets —all-namespaces -o wide

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

于 2020-07-17T06:35:42.987 回答
0

当您访问官方 kubernetes 文档并检查此链接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
于 2020-07-17T06:03:29.470 回答
0

您用于创建守护程序集的 URL 在 kube-system 命名空间中创建了一个守护程序集。而不是在默认名称空间中查看守护程序集。使用以下命令。它将显示所有守护程序集及其运行的名称空间。

Kubectl get ds --all-namespaces 
于 2020-07-17T07:08:00.360 回答