Kubernetes - Interview - Questions - and - Answers by MRINAL sAURAJ Nit Agartala
Kubernetes - Interview - Questions - and - Answers by MRINAL sAURAJ Nit Agartala
Answers
What is Kubernetes?
Kubernetes is an open-source platform used for managing containerized applications in
different environments like physical machines, virtual machines, or cloud platforms.
What is a container?
A container is a lightweight, portable unit of software that includes everything needed to
run an application, such as the code, runtime, system tools, and libraries.
What is kubectl?
kubectl is a command-line tool for interacting with the Kubernetes API server. It helps
manage Kubernetes clusters and deploy applications.
What is a ConfigMap?
A ConfigMap is an API object that allows you to store configuration data as key-value pairs.
It can be used by Pods.
What is a ReplicaSet?
A ReplicaSet ensures that a specified number of identical Pods are running at any given
time.
What is Helm?
Helm is a package manager for Kubernetes, helping to manage complex applications and
their dependencies.
What is a DaemonSet?
A DaemonSet ensures that a copy of a Pod is running on all or some Nodes in the cluster.
What is a StatefulSet?
A StatefulSet is used for managing stateful applications, providing stable network identities
and persistent storage.
What is a kubelet?
The kubelet is an agent that runs on each Node in the cluster and ensures that containers
are running in Pods.