0
0
Microservicessystem_design~5 mins

Kubernetes basics review in Microservices - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Kubernetes?
Kubernetes is a system that helps you run and manage many containers across many computers easily.
Click to reveal answer
beginner
What is a Pod in Kubernetes?
A Pod is the smallest unit in Kubernetes. It holds one or more containers that share storage and network.
Click to reveal answer
beginner
What does a Kubernetes Service do?
A Service lets you access a group of Pods as one, giving a stable way to reach them even if Pods change.
Click to reveal answer
intermediate
What is a Deployment in Kubernetes?
A Deployment manages Pods and makes sure the right number of them are running, updating them smoothly when needed.
Click to reveal answer
intermediate
Why use Kubernetes for microservices?
Kubernetes helps run many small services reliably, handles failures, and makes updating easy without stopping the whole app.
Click to reveal answer
What is the smallest deployable unit in Kubernetes?
APod
BService
CNode
DDeployment
Which Kubernetes object provides a stable IP and DNS name to access Pods?
APod
BConfigMap
CService
DNamespace
What does a Deployment help you do?
AStore data persistently
BManage and update Pods
CControl user access
DMonitor cluster health
How does Kubernetes help with microservices?
ABy managing many small services reliably
BBy combining all services into one container
CBy replacing containers with virtual machines
DBy removing the need for networking
What is a Node in Kubernetes?
AA storage volume
BA container inside a Pod
CA network service
DA machine that runs Pods
Explain what a Pod is and why it is important in Kubernetes.
Think of a Pod as a small box holding containers that work together.
You got /4 concepts.
    Describe how Kubernetes Services help in accessing microservices.
    Services act like a phone number that always reaches the right person.
    You got /4 concepts.