Kubernetes [错误CorednSupportedPlugins]:升级k8s群集时,CoreDNS Corefile中存在不受支持的插件。什么是不受支持的?

Kubernetes [错误CorednSupportedPlugins]:升级k8s群集时,CoreDNS Corefile中存在不受支持的插件。什么是不受支持的?,kubernetes,Kubernetes,我试图将k8s群集更新为1.19.3,但当我尝试升级主群集时,它会抱怨不支持插件。我已经看过了,但是我在Corefile中没有看到相同的插件。这是我第一次不得不升级集群。这是我当前的群集状态: 和核心文件: data: Corefile: | .:53 { errors health ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods

我试图将k8s群集更新为1.19.3,但当我尝试升级主群集时,它会抱怨不支持插件。我已经看过了,但是我在Corefile中没有看到相同的插件。这是我第一次不得不升级集群。这是我当前的群集状态:

和核心文件:

data:
  Corefile: |
    .:53 {
        errors
        health
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
          pods insecure
          upstream 10.77.16.2 10.129.16.16 10.128.16.18
          fallthrough in-addr.arpa ip6.arpa
        }
        prometheus :9153
        forward . 10.77.16.2 10.129.16.16 10.128.16.18 {
          prefer_udp
        }
        cache 30
        loop
        reload
        loadbalance
    }
kind: ConfigMap
metadata:
  annotations:
    kubectl.kubernetes.io/last-applied-configuration: |
      {"apiVersion":"v1","data":{"Corefile":".:53 {\n    errors\n    health\n    ready\n    kubernetes cluster.local in-addr.arpa ip6.arpa {\n      pods insecure\n      upstream 10.77.16.2 10.129.16.16 10.128.16.18\n      fallthrough in-addr.arpa ip6.arpa\n    }\n    prometheus :9153\n    forward . 10.77.16.2 10.129.16.16 10.128.16.18 {\n      prefer_udp\n    }\n    cache 30\n    loop\n    reload\n    loadbalance\n}\n"},"kind":"ConfigMap","metadata":{"annotations":{},"labels":{"addonmanager.kubernetes.io/mode":"EnsureExists"},"name":"coredns","namespace":"kube-system"}}
  creationTimestamp: "2019-10-22T15:44:24Z"
  labels:
    addonmanager.kubernetes.io/mode: EnsureExists
  name: coredns
  namespace: kube-system
  resourceVersion: "3201"
  selfLink: /api/v1/namespaces/kube-system/configmaps/coredns
  uid: d2e3ba9a-f4e2-11e9-81f5-0050568f4e0e

描述w-1显示的节点无法初始化csinode;更新csinode批注时出错:等待条件时超时;原因是服务器找不到请求的资源,因为kubelet的消息未就绪

您是否尝试过使用github案例中建议的
--ignore preflight errors=corednsupportedplugins
?我考虑过,但由于不熟悉这一点,也不知道根本原因,我犹豫了,因为当时这是一个生产实例。