kubectl basic Kubernetes cluster information

View information about the cluster:

kubectl cluster-info
List all the nodes part of the cluster:
kubectl get nodes
To get also additional information about nodes like the OS flavor, kernel version and container runtime use -o wide option:
kubectl get nodes -o wide