0 votes
in Cloud Computing by

You are going to deploy a set of applications in GKE.
Which of the following choices do you need to make to be sure that the application will not have Single Point of failures of any kind and will be scalable?
Choose 2 options among the following ones?

A. Create a cluster with a default-pool with cluster autoscaler
B. Create a single-zone cluster
C. Create a cluster with a default-pool with a default configuration
D. Create a regional cluster

1 Answer

0 votes
by

Correct Answer A, D
In order to avoid Single Point of failures of any kind, you have to have

  • workers nodes with auto-healing and auto-scaling
    • Option A
  • a backup master node (regional cluster).
    • Option D

Nodes execute the workloads run on the cluster. Nodes are VMs that run containers configured to run an application. Nodes are primarily controlled by the cluster master, but some commands can be run manually. The nodes run an agent called kubelet, which is the service that communicates with the cluster master.

Related questions

0 votes
asked Dec 2, 2021 in Cloud Computing by DavidAnderson
0 votes
asked Dec 3, 2021 in Cloud Computing by DavidAnderson
...