// Module included in the following assemblies: // // * [id="understanding-workers-masters_{context}"] = Understanding {product-title} workers and masters With installation complete, the cluster is now fully in charge of managing itself. Management of worker (compute) and master (control plane) nodes is done from within the cluster. So, before moving on to what the {product-title} cluster does to help you develop and deploy applications, you should explore how an {product-title} cluster manages itself. For that, we focus on three things; workers, masters (the control plane) and Operators. To see which workers and masters are running on your cluster, type: ---- $ oc get nodes NAME STATUS ROLES AGE VERSION ip-10-0-0-1.us-east-2.compute.internal Ready worker 4h20m v1.25.0 ip-10-0-0-2.us-east-2.compute.internal Ready master 4h39m v1.25.0 ip-10-0-0.3.us-east-2.compute.internal Ready worker 4h20m v1.25.0 ip-10-0-0-4.us-east-2.compute.internal Ready master 4h39m v1.25.0 ip-10-0-0-5.us-east-2.compute.internal Ready master 4h39m v1.25.0 ip-10-0-0-6.us-east-2.compute.internal Ready worker 4h20m v1.25.0 ---- To see more information about internal and external IP addresses, the type of operating system ({op-system}), kernel version, and container runtime (CRI-O), add the `-o wide` option. ---- $ oc get nodes -o wide NAME                                       STATUS ROLES  AGE  VERSION  INTERNAL-IP   EXTERNAL-IP  OS-IMAGE             KERNEL-VERSION             CONTAINER-RUNTIME ip-10-0-134-252.us-east-2.compute.internal Ready worker 17h v1.25.0 10.0.134.252 Red Hat CoreOS 4.0 3.10.0-957.5.1.el7.x86_64 cri-o://1.25.0-1.rhaos4.0.git2f0cb0d.el7 .... ----