K8s Troubleshooting β€” Pod in Container Creating Status

Pod in ContainerCreating Status

In K8s, when a pod status shows β€œContainerCreating”, it means that the pod has been scheduled on a node (the decision has been made regarding which node the pod should run on), and the kubelet on that node is in the process of creating the containers for that pod.

During this phase, the following actions are performed:

  1. Pulling the required Docker images onto the node (if they are not already available locally).

  2. Creating the containers from these images.

  3. Starting the containers.

If everything goes as expected, the pod status transitions from β€œContainerCreating” to β€œRunning” once all of the containers within the pod are up and running.

Common Causes

If a pod is stuck in ContainerCreating status for a long time, it generally indicates that there’s an issue preventing the containers from being successfully created. Some of the common reasons include:

  1. Image Pull Issues: This is one of the most common issues. It could be that the specified image doesn’t exist, the image name is misspelled, or there’s a network issue preventing the image from being pulled.

  2. Insufficient Resources: If the node doesn’t have enough CPU or memory resources available to run the containers, then the pod will not be able to move past the β€œContainerCreating” status.

  3. Network Issues: If there’s a network issue, such as a problem with the CNI (Container Network Interface) plugin, it might prevent the containers from being created.

  4. Security Context Issues: If the security context for the pod or container is not properly configured (for example, the pod is trying to run as a specific user that doesn’t exist), it can prevent the container from starting.

  5. Docker or Runtime Issues: If there are issues with the Docker daemon or container runtime, it could prevent the containers from being created.

  6. Issues with Persistent Volumes: If the pod is dependent on a Persistent Volume Claim (PVC) and that PVC is not available or can’t be mounted for some reason, the pod will remain in the β€œContainerCreating” state.

How to Troubleshoot

Image Pull Issues

You can use the kubectl describe pod <pod-name> command to check the events of the pod.

$ kubectl describe pod my-pod

Look for β€œFailed to pull image” or β€œImagePullBackOff” events. These would indicate issues with pulling the Docker image.

Insufficient Resources

Use the kubectl describe node <node-name> command to check the resources on your node.

$ kubectl describe node my-node

Issues with Persistent Volumes

You can check Pod status use kubectl command:

$ kubectl describe pod my-pod

Looking for errors like:

Kubelet(k8s-node2) Error syncing pod, skipping: timeout expired waiting 
for volumes toattach/mount for pod "my-pod"/"default". 
list of unattached/unmounted volumes=[ceph-pv]

Then check the PVC status:

$ kubectl get pvc

If the STATUS of a PVC is not β€œBound”, there might be issues with storage provisioning.

Network Issues

Network issues can be a bit harder to diagnose. You can check the logs of your CNI plugin (which depends on the specific CNI you are using). For example, if you’re using Calico, you can check the logs of the Calico pods:

$ kubectl -n kube-system logs -l k8s-app=calico-node

Security Context Issues

Check the security context of your Pod using the kubectl get pod <pod-name> -o yaml command.

$ kubectl get pod my-pod -o yaml

Docker or Runtime Issues

Check the logs on your node. The way to do this depends on your node’s operating system and your container runtime. For Docker on a system using systemd, you can use:

$ journalctl -u docker

Conclusion

Last updated