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
Question
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)- A4% (1)
- D96% (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
Community Discussion
No community discussion yet for this question.