Member-only story
Navigating Kubernetes
Kubernetes Quiz for Beginners: 43 Questions Unraveled
From Basics to Brilliance: Your Comprehensive Guide to Mastering Kubernetes Through Q&A
- What is Kubernetes?
Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.
2. What are the main features of Kubernetes?
Self-healing, load balancing, service discovery, automated rollouts and rollbacks, horizontal scaling, secret and configuration management.
3. What is a Pod in Kubernetes?
A Pod is the smallest deployable unit in Kubernetes, which can hold one or more containers that share storage/network resources and a specification on how to run the containers.
4. What is a Deployment in Kubernetes?
A Deployment provides declarative updates to Pods and ReplicaSets.
5. What is a Service in Kubernetes?
A Service is an abstraction that defines a logical set of Pods and a policy to access them, often via a network service.
6. How does Kubernetes load balancing work?