oc events
List events
Example usage
# List recent events in the default namespace.
oc events
# List recent events in all namespaces.
oc events --all-namespaces
# List recent events for the specified pod, then wait for more events and list them as they arrive.
oc events --for pod/web-pod-13je7 --watch
# List recent events in given format. Supported ones, apart from default, are json and yaml.
oc events -oyaml
# List recent only events in given event types
oc events --types=Warning,Normal