Define Kubernetes cluster.
A set of nodes that run containerized applications managed by Kubernetes.
What is the role of the master node?
It manages the Kubernetes cluster and controls the scheduling and orchestration.
True or false: Kubernetes is an open-source container orchestration platform.
TRUE
Fill in the blank: Pods are the smallest deployable units in a ______.
Kubernetes cluster
What does a worker node do?
It runs the applications and workloads in the cluster.
Define kubelet.
An agent that runs on each worker node and ensures containers are running.
What is a service in Kubernetes?
An abstraction that defines a logical set of Pods and a policy to access them.
True or false: Kubernetes supports both stateful and stateless applications.
TRUE
Fill in the blank: ConfigMaps are used to manage ______ in Kubernetes.
configuration data
What is the purpose of a Deployment?
To manage the desired state of Pods and ensure they are running as specified.
Define namespace in Kubernetes.
A way to divide cluster resources between multiple users or applications.
What is a ReplicaSet?
A controller that ensures a specified number of Pod replicas are running.
True or false: Kubernetes can automatically scale applications.
TRUE
Fill in the blank: Ingress manages external access to services, typically via ______.
HTTP
What is the role of etcd?
It is a distributed key-value store used for storing cluster data.
Define helm.
A package manager for Kubernetes that helps manage applications.
What is a Job in Kubernetes?
A controller that ensures a specified number of Pods successfully terminate.
True or false: Kubernetes can run on any cloud provider.
TRUE
Fill in the blank: Persistent Volumes provide ______ storage in Kubernetes.
durable
What is a StatefulSet?
A controller for managing stateful applications with stable identities.
Define kube-proxy.
A network proxy that maintains network rules for Pod communication.
What does kubectl do?
It is the command-line tool for interacting with Kubernetes clusters.
True or false: Kubernetes uses YAML for configuration files.
TRUE
Fill in the blank: Horizontal Pod Autoscaler adjusts the number of Pods based on ______.
CPU utilization