How do kubectl get nodes and kubectl describe node NODE_NAME differ?
kubectl get nodes
kubectl describe node NODE_NAME
Both commands remove nodes from the cluster after displaying them.
get nodes lists cluster nodes and statuses; describe node shows detailed status, capacity, usage, metadata, and related information for one node.
get nodes
describe node
get nodes gives one node's full details; describe node only lists node names.
Both commands create a new node if the requested node does not exist.