You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no resource type mentioned in below commands :
$ oc describe --selector=<node_selector>
$ oc describe -l=<pod_selector>
If user runs these commands, they will get below error :
error: You must specify the type of resource to describe. Use "oc api-resources" for a complete list of supported resources.
The correct commands are as below :
$ oc describe node --selector=<node_selector>
$ oc describe node -l=<pod_selector>
0 commit comments