If we were to retrieve information of a Kubernetes object, we can use the describe command.

kubectl describe <object type> <object name>

To retrieve information of Kubernetes objects of a specific type, we just omit the name of the object.

kubectl describe <object type>

To retrieve information of all Kubernetes objects, we put all in place of <object type>

kubectl describe all

References