Kubernetes: Container Orchestration Essentials
Kubernetes: Container Orchestration Essentials
Up to 20 questions, shuffled on every run
Welcome to the Kubernetes Basics Quiz! This quiz covers fundamental Kubernetes concepts, container orchestration, and cloud-native application deployment best practices. Each question is multiple-choice, and you’ll find hints to help you along the way. Good luck!
Answer key and explanations20 questions
The quiz above draws 20 questions at random from these 30, so a second attempt will not be the same run. Everything in the pool is listed here.
What is the smallest deployable unit in Kubernetes?
AnswerA Pod containing containers
Which component is responsible for maintaining the desired state of a Deployment?
AnswerThe Kube-controller-manager
What is the purpose of a Service in Kubernetes?
AnswerTo provide a stable endpoint
Which Service type makes a Pod accessible from outside the cluster via a cloud provider's load balancer?
AnswerThe external LoadBalancer
What is the primary role of "etcd"?
AnswerTo store cluster state data
What happens when a Pod is "Pending"?
AnswerThe Pod is being scheduled
Which command is used to view the logs of a Pod?
Answer`kubectl logs <pod-name>`
What is a "ReplicaSet"?
AnswerA controller for Pod counts
What is the purpose of an Ingress?
AnswerTo route external HTTP traffic
Which object is best for running a background task that completes and then exits?
AnswerA finite execution Job
What does "ConfigMap" provide?
AnswerInjection of Pod configuration
Which component runs on every Node and ensures Pod containers are healthy?
AnswerThe Node-resident Kubelet
What is a "Namespace"?
AnswerAn isolation boundary for resources
What is "Horizontal Pod Autoscaler" (HPA) used for?
AnswerAdjusting the count of replicas
What is the purpose of a "Liveness Probe"?
AnswerTo trigger a container restart
Which object allows you to run a Pod on every single Node?
AnswerA node-wide DaemonSet
What is the "Kube-proxy"?
AnswerA node-level network rule manager
What is a "Sidecar container"?
AnswerA secondary helper in the same Pod
What command shows the detailed status and events of a resource?
Answer`kubectl describe <resource>`
What is "RBAC" in Kubernetes?
AnswerRole-Based Access Control
Which controller is used for stateful applications like Databases?
AnswerA persistent StatefulSet
What is the "API Server"?
AnswerThe Control Plane gateway
What is a "Taint"?
AnswerA node property to repel Pods
What does "Node Affinity" do?
AnswerConstrains Pod placement
What is a "PersistentVolume" (PV)?
AnswerA provisioned cluster storage
What is the purpose of the "Helm" tool?
AnswerManaging K8s app packages
What does "kubectl apply -f" do?
AnswerSynchronizes desired state
What is a "Resource Request" in a Pod spec?
AnswerThe minimum resources required
What is a "CRD" (Custom Resource Definition)?
AnswerAn extension of the K8s API
What is the "Kube-scheduler" responsible for?
AnswerAssigning Pods to worker Nodes








