1. IBM Cloud Pak for Business Automation Documentation: In the troubleshooting section for operators
the procedure consistently involves identifying the operator pod and then using a command to retrieve its logs. For example: "Get the logs for the operator pods to find information about the error. oc logs -c ". This confirms the pod is the source for log retrieval.
Source: IBM Documentation
IBM Cloud Pak for Business Automation v21.0.3
"Troubleshooting and support > Troubleshooting operator issues".
2. Red Hat OpenShift Container Platform Documentation: The official documentation for OpenShift
the platform on which CP4BA runs
specifies that logs for any application
including operators
are accessed at the pod level. "You can view logs for a particular pod... using the oc logs command."
Source: Red Hat OpenShift Container Platform 4.10 Documentation
"Monitoring > Viewing logs > Viewing logs for a specific resource".
3. Kubernetes Documentation: The fundamental logging architecture of Kubernetes
which underpins OpenShift
states that the basic logging mechanism is to capture the standard output and standard error streams of a container. These logs are made accessible through the kubectl logs command
which targets a specific pod.
Source: Kubernetes Documentation
"Concepts > Cluster Administration > Logging Architecture".