$ oc project <project_name>
OpenShift Container Platform leverages the Kubernetes concept of a pod, which is one or more containers deployed together on one host. A pod is the smallest compute unit that can be defined, deployed, and managed on OpenShift Container Platform 4.15.
After a pod is defined, it is assigned to run on a node until its containers exit, or until it is removed. Depending on policy and exit code, Pods are either removed after exiting or retained so that their logs can be accessed.
The first thing to check when pod issues arise is the pod’s status. If an explicit pod failure has occurred, observe the pod’s error state to identify specific image, container, or pod network issues. Focus diagnostic data collection according to the error state. Review pod event messages, as well as pod and container log information. Diagnose issues dynamically by accessing running Pods on the command line, or start a debug pod with root access based on a problematic pod’s deployment configuration.
Pod failures return explicit error states that can be observed in the status
field in the output of oc get pods
. Pod error states cover image, container, and container network related failures.
The following table provides a list of pod error states along with their descriptions.
Pod error state | Description |
---|---|
|
Generic image retrieval error. |
|
Image retrieval failed and is backed off. |
|
The specified image name was invalid. |
|
Image inspection did not succeed. |
|
|
|
When attempting to retrieve an image from a registry, an HTTP error was encountered. |
|
The specified container is either not present or not managed by the kubelet, within the declared pod. |
|
Container initialization failed. |
|
None of the pod’s containers started successfully. |
|
None of the pod’s containers were killed successfully. |
|
A container has terminated. The kubelet will not attempt to restart it. |
|
A container or image attempted to run with root privileges. |
|
Pod sandbox creation did not succeed. |
|
Pod sandbox configuration was not obtained. |
|
A pod sandbox did not stop successfully. |
|
Network initialization failed. |
|
Network termination failed. |
You can query pod status and error states. You can also query a pod’s associated deployment configuration and review base image availability.
You have access to the cluster as a user with the cluster-admin
role.
You have installed the OpenShift CLI (oc
).
skopeo
is installed.
Switch into a project:
$ oc project <project_name>
List pods running within the namespace, as well as pod status, error states, restarts, and age:
$ oc get pods
Determine whether the namespace is managed by a deployment configuration:
$ oc status
If the namespace is managed by a deployment configuration, the output includes the deployment configuration name and a base image reference.
Inspect the base image referenced in the preceding command’s output:
$ skopeo inspect docker://<image_reference>
If the base image reference is not correct, update the reference in the deployment configuration:
$ oc edit deployment/my-deployment
When deployment configuration changes on exit, the configuration will automatically redeploy. Watch pod status as the deployment progresses, to determine whether the issue has been resolved:
$ oc get pods -w
Review events within the namespace for diagnostic information relating to pod failures:
$ oc get events
You can inspect pod and container logs for warnings and error messages related to explicit pod failures. Depending on policy and exit code, pod and container logs remain available after pods have been terminated.
You have access to the cluster as a user with the cluster-admin
role.
Your API service is still functional.
You have installed the OpenShift CLI (oc
).
Query logs for a specific pod:
$ oc logs <pod_name>
Query logs for a specific container within a pod:
$ oc logs <pod_name> -c <container_name>
Logs retrieved using the preceding oc logs
commands are composed of messages sent to stdout within pods or containers.
Inspect logs contained in /var/log/
within a pod.
List log files and subdirectories contained in /var/log
within a pod:
$ oc exec <pod_name> -- ls -alh /var/log
total 124K
drwxr-xr-x. 1 root root 33 Aug 11 11:23 .
drwxr-xr-x. 1 root root 28 Sep 6 2022 ..
-rw-rw----. 1 root utmp 0 Jul 10 10:31 btmp
-rw-r--r--. 1 root root 33K Jul 17 10:07 dnf.librepo.log
-rw-r--r--. 1 root root 69K Jul 17 10:07 dnf.log
-rw-r--r--. 1 root root 8.8K Jul 17 10:07 dnf.rpm.log
-rw-r--r--. 1 root root 480 Jul 17 10:07 hawkey.log
-rw-rw-r--. 1 root utmp 0 Jul 10 10:31 lastlog
drwx------. 2 root root 23 Aug 11 11:14 openshift-apiserver
drwx------. 2 root root 6 Jul 10 10:31 private
drwxr-xr-x. 1 root root 22 Mar 9 08:05 rhsm
-rw-rw-r--. 1 root utmp 0 Jul 10 10:31 wtmp
Query a specific log file contained in /var/log
within a pod:
$ oc exec <pod_name> cat /var/log/<path_to_log>
2023-07-10T10:29:38+0000 INFO --- logging initialized ---
2023-07-10T10:29:38+0000 DDEBUG timer: config: 13 ms
2023-07-10T10:29:38+0000 DEBUG Loaded plugins: builddep, changelog, config-manager, copr, debug, debuginfo-install, download, generate_completion_cache, groups-manager, needs-restarting, playground, product-id, repoclosure, repodiff, repograph, repomanage, reposync, subscription-manager, uploadprofile
2023-07-10T10:29:38+0000 INFO Updating Subscription Management repositories.
2023-07-10T10:29:38+0000 INFO Unable to read consumer identity
2023-07-10T10:29:38+0000 INFO Subscription Manager is operating in container mode.
2023-07-10T10:29:38+0000 INFO
List log files and subdirectories contained in /var/log
within a specific container:
$ oc exec <pod_name> -c <container_name> ls /var/log
Query a specific log file contained in /var/log
within a specific container:
$ oc exec <pod_name> -c <container_name> cat /var/log/<path_to_log>
You can review running pods dynamically by opening a shell inside a pod or by gaining network access through port forwarding.
You have access to the cluster as a user with the cluster-admin
role.
Your API service is still functional.
You have installed the OpenShift CLI (oc
).
Switch into the project that contains the pod you would like to access. This is necessary because the oc rsh
command does not accept the -n
namespace option:
$ oc project <namespace>
Start a remote shell into a pod:
$ oc rsh <pod_name> (1)
1 | If a pod has multiple containers, oc rsh defaults to the first container unless -c <container_name> is specified. |
Start a remote shell into a specific container within a pod:
$ oc rsh -c <container_name> pod/<pod_name>
Create a port forwarding session to a port on a pod:
$ oc port-forward <pod_name> <host_port>:<pod_port> (1)
1 | Enter Ctrl+C to cancel the port forwarding session. |
You can start a debug pod with root access, based on a problematic pod’s deployment or deployment configuration. Pod users typically run with non-root privileges, but running troubleshooting pods with temporary root privileges can be useful during issue investigation.
You have access to the cluster as a user with the cluster-admin
role.
Your API service is still functional.
You have installed the OpenShift CLI (oc
).
Start a debug pod with root access, based on a deployment.
Obtain a project’s deployment name:
$ oc get deployment -n <project_name>
Start a debug pod with root privileges, based on the deployment:
$ oc debug deployment/my-deployment --as-root -n <project_name>
Start a debug pod with root access, based on a deployment configuration.
Obtain a project’s deployment configuration name:
$ oc get deploymentconfigs -n <project_name>
Start a debug pod with root privileges, based on the deployment configuration:
$ oc debug deploymentconfig/my-deployment-configuration --as-root -n <project_name>
You can append |
You can copy files to and from a pod to test configuration changes or gather diagnostic information.
You have access to the cluster as a user with the cluster-admin
role.
Your API service is still functional.
You have installed the OpenShift CLI (oc
).
Copy a file to a pod:
$ oc cp <local_path> <pod_name>:/<path> -c <container_name> (1)
1 | The first container in a pod is selected if the -c option is not specified. |
Copy a file from a pod:
$ oc cp <pod_name>:/<path> -c <container_name> <local_path> (1)
1 | The first container in a pod is selected if the -c option is not specified. |
For |