Medium1 markMultiple Choice
GCP ACE · Question 22 · Domain 3.2: Deploying and implementing GKE resources
You need to create a new Google Kubernetes Engine (GKE) standard cluster named 'web-cluster' with 3 nodes in the us-central1-a zone using the command line.
Which gcloud command should you use?
You need to create a new Google Kubernetes Engine (GKE) standard cluster named 'web-cluster' with 3 nodes in the us-central1-a zone using the command line.
Which gcloud command should you use?
Answer options:
A.
gcloud container clusters create web-cluster --zone us-central1-a --num-nodes 3
B.
gcloud compute clusters create web-cluster --zone us-central1-a --num-nodes 3
C.
kubectl create cluster web-cluster --zone us-central1-a --nodes 3
D.
gcloud gke clusters create web-cluster --zone us-central1-a --num-nodes 3
How to approach this question
Remember the gcloud command group for Kubernetes Engine. It is 'container', not 'gke' or 'compute'.
Full Answer
A.gcloud container clusters create web-cluster --zone us-central1-a --num-nodes 3✓ Correct
gcloud container clusters create web-cluster --zone us-central1-a --num-nodes 3
In the Google Cloud SDK, all commands related to Google Kubernetes Engine (GKE) are grouped under `gcloud container`. Therefore, to create a cluster, you use `gcloud container clusters create [CLUSTER_NAME]`. The `--zone` and `--num-nodes` flags specify the location and size.
Common mistakes
Using `kubectl` to try and create the cluster infrastructure, or guessing `gcloud gke`.
Practice the full GCP Associate Cloud Engineer Practice Exam 5
50 questions · hints · full answers · grading
More questions from this exam
Q01You are starting a new initiative and need to create a new Google Cloud project using the command...EasyQ02A developer on your team needs to manage App Engine applications, including deploying new version...MediumQ03You have created a new Google Cloud project. You need to allow a specific group of developers to ...MediumQ04Which statement best describes the relationship between Google Cloud projects and billing accounts?EasyQ05Your company wants to be notified immediately in their Slack channel whenever their monthly Googl...Medium
Expert