PROFESSIONAL-CLOUD-ARCHITECT · Question #42
You want to enable your running Google Kubernetes Engine cluster to scale as demand for your application changes. What should you do?
The correct answer is C. Update the existing Kubernetes Engine cluster with the following command: gcloud alpha. https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-autoscaler To enable autoscaling for an existing node pool, run the following command: gcloud container clusters update [CLUSTER_NAME] --enable-autoscaling \ --min-nodes 1 --max- nodes 10 --zone [COMPUTE_ZONE]…
Question
Options
- AAdd additional nodes to your Kubernetes Engine cluster using the following command: gcloud
- BAdd a tag to the instances in the cluster with the following command: gcloud compute instances
- CUpdate the existing Kubernetes Engine cluster with the following command: gcloud alpha
- DCreate a new Kubernetes Engine cluster with the following command: gcloud alpha container
How the community answered
(36 responses)- B3% (1)
- C94% (34)
- D3% (1)
Explanation
https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-autoscaler To enable autoscaling for an existing node pool, run the following command: gcloud container clusters update [CLUSTER_NAME] --enable-autoscaling \ --min-nodes 1 --max- nodes 10 --zone [COMPUTE_ZONE] --node-pool default- pool
Topics
Community Discussion
No community discussion yet for this question.