Kubernetes Interview Questions Answers
Kubernetes Interview Questions Answers
Beginner Level
Q: What is Kubernetes and why is it used?
A: Kubernetes is an open-source container orchestration platform used to automate the deployment, scaling, a
Q: What is a ReplicaSet?
A: A ReplicaSet ensures a specified number of Pod replicas are running at any given time.
Intermediate Level
Q: How does Kubernetes handle rolling updates and rollbacks?
A: Kubernetes uses Deployments to perform rolling updates and rollbacks, ensuring minimal downtime.
Q: What is the difference between Horizontal Pod Autoscaler and Cluster Autoscaler?
A: Horizontal Pod Autoscaler scales the number of Pods based on resource usage, while Cluster Autoscaler s
Advanced Level
Q: How does Kubernetes networking work under the hood?
A: Kubernetes networking uses a flat network model where all Pods can communicate with each other, typicall