Google Cloud Certified Associate Cloud Engineer Practice

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Google Cloud Certified Associate Cloud Engineer Exam with our comprehensive quiz. Engage with interactive flashcards and multiple choice questions that offer hints and detailed explanations to solidify your understanding. Get ready to excel!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


Your team uses a third-party monitoring solution. They've asked you to deploy it to the nodes in your Kubernetes Engine Cluster. What's the best way to do that?

  1. Deploy the monitoring pod as a DaemonSet.

  2. Deploy the monitoring pod as a Deployment.

  3. Use Deployment Manager to deploy the monitoring solution.

  4. Connect to each node via SSH and install the monitoring solution.

The correct answer is: Deploy the monitoring pod as a DaemonSet.

A DaemonSet is the best choice in this scenario because it allows the monitoring solution to be deployed to all nodes in the cluster automatically, without the need for manual installation on each node. Option B is not recommended because it might not ensure that the monitoring solution is installed on all nodes. Using Deployment Manager, option C, is not preferred because it is typically used for managing Kubernetes resources, not for deploying monitoring solutions. Option D is the most time-consuming and tedious option, as it would require manually connecting to each node and installing the solution individually.