Help Center/ Ubiquitous Cloud Native Service/ FAQs/ On-Premises Clusters/ What Can I Do If the Cluster Console Is Unavailable After the Master Node Is Shut Down?
Updated on 2024-09-11 GMT+08:00

What Can I Do If the Cluster Console Is Unavailable After the Master Node Is Shut Down?

Symptom

After the master node is shut down, the cluster console is unavailable.

Procedure

The Cilium community does not remove the Cilium endpoint from the pod in the Terminating status. As a result, some requests are distributed to the stopped node, and the requests fail. Perform the following operations:

  1. Run the following command to delete the pod in the Terminating status:

    kubectl get pods -nkube-system | grep Terminating | awk '{print $1}'|xargs kubectl delete pods -nkube-system

  2. Run the following command to check whether any pod malfunctions:

    kubectl get pods -nkube-system

  3. After several minutes, the cluster console works properly again.