Share via

Nodes are going in Ready,SchedulingDisabled status?

Tanul 1,296 Reputation points
2023-04-28T11:09:40.8666667+00:00

Hello,

Nodes are automatically going in Ready,SchedulingDisabled status. Any suggestions please. How to debug ?

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.

Azure Kubernetes Service
Azure Kubernetes Service

An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.

{count} votes

1 answer

Sort by: Most helpful
  1. Sedat SALMAN 14,285 Reputation points MVP Volunteer Moderator
    2023-04-28T11:13:13.8833333+00:00

    If you have enabled the cluster autoscaler, it may have marked some nodes as unschedulable to ensure efficient resource utilization. This is normal behavior and should not cause any issues.

    Check if any taints have been applied to the nodes. Taints can make nodes unschedulable unless a pod has a matching toleration

    kubectl describe node <node_name>
    

    Nodes can be marked as unschedulable if they were cordoned manually using the kubectl cordon command.

    kubectl uncordon <node_name>
    

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.