Which component is not typically replicated to achieve high availability in a Kubernetes control plane setup?
Think about which component runs on worker nodes rather than control plane nodes.
The kubelet runs on worker nodes and is not part of the control plane replication. The API Server, etcd, and Controller Manager are control plane components that are replicated for high availability.
You run the command etcdctl endpoint health on a 3-node etcd cluster. What output indicates all nodes are healthy?
etcdctl endpoint health
Healthy means the node successfully processes requests.
The message 'successfully committed proposal' means the etcd node is healthy and responding correctly.
Which load balancer configuration snippet correctly balances traffic to three Kubernetes API servers on port 6443?
Health checks help detect unhealthy API servers.
Option C includes health checks on all servers, which is essential for load balancers to route traffic only to healthy API servers.
In a 3-master HA Kubernetes cluster, the API server on master2 is down. The load balancer still sends traffic to master2, causing failures. What is the most likely cause?
Focus on how the load balancer detects server health.
If the load balancer lacks health checks, it will continue sending traffic to a down API server, causing failures.
What is the correct order of steps to add a new master node to an existing high availability Kubernetes cluster?
Think about the dependencies: components must be installed before joining clusters, and load balancer updated last.
First install components, then join etcd, then join control plane, finally update load balancer to route traffic to the new master.