What is the main configuration file used by kubectl on the workstation, and which server details does it store?
~.kube/config
Which command is executed to initialize a Kubernetes Master Node?
kubeadm init
Name the four main components that run as Pods on the Kubernetes Master Node.
api server, controller manager, kube scheduler,etcd(storage)
Where are the Docker images for core Kubernetes components typically pulled from during cluster setup?
api server, controller manager, kube scheduler,etcd(storage),coredns, kubeproxy
What is the purpose of the kubelet service on both master and worker nodes?
pod managment, static pod managment, reporting the node status
Which Kubernetes component is responsible for maintaining cluster state and storing configuration data
master node - etcd
What command is used on worker nodes to join them to an existing Kubernetes cluster?
kubeamn join
Which component acts as an interface between the workstation and the Kubernetes cluster, and what file does it rely on for access?
kubectl - kube config file ~.kube/confi
On which nodes does the Kubernetes proxy component run, and in what form is it deployed?
master and worker node, deamon set form
List the container runtimes mentioned in your notes that work with Kubernetes nodes.
containerd,docker, CRI-o