Nodes are going in Ready,SchedulingDisabled status?

Tanul 1,226 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.
6,353 questions
Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,663 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Sedat SALMAN 10,495 Reputation points
    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>