
Explanation:
The correct answer is C because a DaemonSet ensures that a copy of a pod runs on all (or some) nodes in a Kubernetes cluster. This is ideal for deploying background tasks like monitoring solutions across all nodes without manual intervention.
Ultimate access to all questions.
No comments yet.
Your team utilizes a third-party monitoring solution and has requested its deployment across all nodes in your Kubernetes Engine Cluster. What is the most efficient method to achieve this?
A
Deploy the monitoring pod as a StatefulSet.
B
Use Deployment Manager to deploy the monitoring solution.
C
Deploy the monitoring pod as a DaemonSet.
D
Connect to each node via SSH and manually install the monitoring solution.