nerdexam
Google

ASSOCIATE-CLOUD-ENGINEER · Question #344

You created a cluster.YAML file containing resources: name: cluster type: container.v1.cluster properties: zone: europe-west1-b cluster: description: My GCP ACE cluster initialNodeCount: 2 You want to

The correct answer is D. gcloud deployment-manager deployments apply my-gcp-ace-cluster --config cluster.yaml. gcloud deployment-manager deployments create creates deployments based on the configuration file. (Infrastructure as code). All the configuration related to the artifacts is in the configuration file. This command correctly creates a cluster based on the provided cluster.yaml con

Submitted by sofia.br· Mar 30, 2026Deploying and implementing a cloud solution

Question

You created a cluster.YAML file containing resources: name: cluster type: container.v1.cluster properties: zone: europe-west1-b cluster: description: My GCP ACE cluster initialNodeCount: 2 You want to use Cloud Deployment Manager to create this cluster in GKE. What should you do?

Options

  • Agcloud deployment-manager deployments create my-gcp-ace-cluster --config cluster.yaml
  • Bgcloud deployment-manager deployments create my-gcp-ace-cluster --type container.v1.cluster --
  • Cgcloud deployment-manager deployments apply my-gcp-ace-cluster --type container.v1.cluster --
  • Dgcloud deployment-manager deployments apply my-gcp-ace-cluster --config cluster.yaml

How the community answered

(28 responses)
  • A
    4% (1)
  • D
    96% (27)

Explanation

gcloud deployment-manager deployments create creates deployments based on the configuration file. (Infrastructure as code). All the configuration related to the artifacts is in the configuration file. This command correctly creates a cluster based on the provided cluster.yaml configuration file.

Topics

#Cloud Deployment Manager#YAML config#gcloud deployment-manager#GKE cluster provisioning

Community Discussion

No community discussion yet for this question.

Full ASSOCIATE-CLOUD-ENGINEER Practice