How to restart kubernetes nodes?

前端 未结 6 1769
予麋鹿
予麋鹿 2020-12-24 00:53

The status of nodes is reported as unknown

\"conditions\": [
          {
            \"type\": \"Ready\",
            \"status\": \"Unknown\",
          


        
6条回答
  •  有刺的猬
    2020-12-24 01:51

    You can delete the node from the master by issuing:

    kubectl delete node hostname.company.net
    

    The NOTReady status probably means that the master can't access the kubelet service. Check if everything is OK on the client.

提交回复
热议问题