Debug a pod stuck in pending state

12/23/2020

How could I debug a pod stuck in pending state? I am using k8ssandra https://k8ssandra.io/docs/ to create a Cassandra cluster. It uses helm files. I created a 3 nodes cluster and changed size value to 3 in local values.yaml file to create a 3 node cluster - https://github.com/k8ssandra/k8ssandra/blob/main/charts/k8ssandra-cluster/values.yaml

no_reply@cloudshell:~ (k8ssandra-299315)$ kubectl get pods
NAME                                                              READY   STATUS      RESTARTS   AGE
cass-operator-86d4dc45cd-588c8                                    1/1     Running     0          29h
grafana-deployment-66557855cc-j7476                               1/1     Running     0          29h
k8ssandra-cluster-a-grafana-operator-k8ssandra-5b89b64f4f-8pbxk   1/1     Running     0          29h
k8ssandra-cluster-a-reaper-k8ssandra-847c99ccd8-dsnj4             1/1     Running     0          28h
k8ssandra-cluster-a-reaper-k8ssandra-schema-5fzpn                 0/1     Completed   0          28h
k8ssandra-cluster-a-reaper-operator-k8ssandra-87d56d56f-wn8hw     1/1     Running     0          29h
k8ssandra-dc1-default-sts-0                                       2/2     Running     0          29h
**k8ssandra-dc1-default-sts-1                                       0/2     Pending     0          14m**
k8ssandra-dc1-default-sts-2                                       2/2     Running     0          14m
k8ssandra-tools-kube-prome-operator-6bcdf668d4-ndhw9              1/1     Running     0          29h
prometheus-k8ssandra-cluster-a-prometheus-k8ssandra-0             2/2     Running     1          29h
-- Manu Chadha
cass-operator
google-kubernetes-engine
k8ssandra
kubernetes

1 Answer

12/23/2020

The best way as described by Arghya is checking the events of the pod.

kubectl describe pod k8ssandra-dc1-default-sts-1  

You could also check for the logs of the pod:

kubectl logs k8ssandra-dc1-default-sts-1  
-- CaioT
Source: StackOverflow