- Home
- All questions
- Question 526
CKA study material · question 526 of 1000
You want to find out how many kube-apiserver instances a cluster is running. Which objects reveal that?
Show the answer
Answer: C. Lease objects named apiserver-<hash> in kube-system
Each API server publishes its identity as a Lease in kube-system named apiserver plus a hash of its hostname, which lets a client count the running instances.
Source: Leases (Kubernetes) — API server identity