Complete the code to identify the Kubernetes component that serves as the main access point for all REST commands.
kubectl get pods -n kube-system | grep [1]The kube-apiserver is the main access point for all REST commands in Kubernetes.
Complete the code to specify the Kubernetes component responsible for assigning pods to nodes.
kubectl get pods -n kube-system | grep [1]The kube-scheduler assigns pods to nodes based on resource availability.
Fix the error in the command to check the component that manages replication and node lifecycle.
kubectl get pods -n kube-system | grep [1]The kube-controller-manager manages replication controllers and node lifecycle.
Fill both blanks to complete the command that checks the key-value store used by Kubernetes.
kubectl get pods -n kube-system | grep [1] && kubectl get endpoints [2] -n kube-system
etcd is the key-value store for Kubernetes, and etcd-server is the endpoint name for it.
Fill all three blanks to create a dictionary mapping control plane components to their main functions.
control_plane = { '[1]': '[2]', '[3]': 'Assigns pods to nodes' }The kube-apiserver handles API requests, and the kube-scheduler assigns pods to nodes.