0 votes
in Kubernetes K8s by

What is a Kubernetes Deployment?

a) A configuration file for a Pod

b) A way to manage the deployment of containerized applications

c) A tool for monitoring Kubernetes clusters

d) A way to manage Docker images

1 Answer

0 votes
by

Answer: b)

Explanation: A way to manage the deployment of containerized applications. A Kubernetes Deployment is a resource object in Kubernetes that defines how a set of Pods should be deployed, updated, and rolled back.

...