0
0
Kubernetesdevops~5 mins

High availability cluster setup in Kubernetes - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a high availability (HA) cluster in Kubernetes?
A high availability cluster in Kubernetes is a setup where multiple master nodes run simultaneously to ensure the cluster remains operational even if one or more masters fail.
Click to reveal answer
beginner
Why do we use multiple master nodes in an HA Kubernetes cluster?
Multiple master nodes provide redundancy. If one master node fails, others continue managing the cluster, preventing downtime.
Click to reveal answer
intermediate
What role does etcd play in a Kubernetes HA cluster?
etcd stores the cluster's configuration and state data. In HA, etcd runs as a cluster itself to keep data consistent and available across master nodes.
Click to reveal answer
intermediate
How does a load balancer contribute to a Kubernetes HA cluster?
A load balancer distributes requests to the multiple master nodes, ensuring traffic is balanced and the cluster remains reachable even if one master fails.
Click to reveal answer
beginner
Name one common tool or method to set up a Kubernetes HA cluster.
Using kubeadm with multiple control plane nodes and an external load balancer is a common method to set up a Kubernetes HA cluster.
Click to reveal answer
What is the main purpose of having multiple master nodes in a Kubernetes HA cluster?
ATo speed up container image downloads
BTo increase the number of worker nodes
CTo reduce the number of pods running
DTo provide redundancy and avoid single points of failure
Which component stores the cluster state in a Kubernetes HA setup?
Akubelet
Betcd
Ckube-proxy
Dcontainer runtime
What is the role of a load balancer in a Kubernetes HA cluster?
ATo distribute requests to multiple master nodes
BTo balance traffic between worker nodes
CTo store container images
DTo monitor pod health
Which command-line tool is commonly used to initialize a Kubernetes HA cluster?
Akubectl
Bdocker
Ckubeadm
Dhelm
In a Kubernetes HA cluster, what happens if one master node goes down?
AThe cluster continues running using other master nodes
BAll pods are deleted
CThe entire cluster stops working
DWorker nodes shut down automatically
Explain the key components and their roles in a Kubernetes high availability cluster setup.
Think about how the cluster stays up if one part fails.
You got /5 concepts.
    Describe the steps to set up a basic Kubernetes HA cluster using kubeadm.
    Focus on the order and components involved.
    You got /6 concepts.