0 votes
in Kubernetes K8s by

What is a Kubernetes ReplicaSet?

a) A set of backup pods

b) A group of nodes in a Kubernetes cluster

c) A scaling mechanism for Pods

d) A container registry

1 Answer

0 votes
by

Answer: c)

Explanation: A scaling mechanism for Pods. A Kubernetes ReplicaSet is responsible for maintaining a set of identical replicas of Pods and can be used to scale the number of replicas up or down based on demand.

...