The kubectl get nodes -o wide command displays a list of nodes in your Kubernetes cluster along with additional details. The output includes:
- NAME: The name of each node.
- STATUS: The current status of the node (e.g., Ready, NotReady).
- ROLES: The roles assigned to the node (e.g., master, worker).
- AGE: How long the node has been part of the cluster.
- VERSION: The version of Kubernetes running on the node.
- INTERNAL-IP: The internal IP address of the node.
- EXTERNAL-IP: The external IP address of the node (if applicable).
- OS-IMAGE: The operating system image running on the node.
- KERNEL-VERSION: The version of the kernel running on the node.
- CONTAINER-RUNTIME: The container runtime being used on the node (e.g., Docker, containerd).
This command provides a more detailed view of the nodes compared to the standard kubectl get nodes command.
