1
Manage implementation of cloud architecture
easy
A developer runs the command above and sees the output. The cluster has one node pool with 3 nodes, each of type e2-standard-4 (4 vCPU, 16 GB RAM). The application requires at least 2 GB of memory per pod and the cluster has 10 pods that need to be scheduled. The developer also notices that the node pool autoscaling is enabled with a minimum of 1 and maximum of 5 nodes. However, the cluster is unable to schedule all pods. What is the most likely cause?
Exhibit
Refer to the exhibit. ``` $ gcloud container clusters describe my-cluster --zone us-central1-a --format 'table(name, nodeConfig.machineType, nodePools[].initialNodeCount, nodePools[].config.machineType)' NAME: my-cluster MASTER_VERSION: 1.28.5-gke.2000 NODE_CONFIG_MACHINE_TYPE: e2-standard-4 NODE_POOLS: [0].initialNodeCount: 3 NODE_POOLS: [0].config.machineType: e2-standard-4 ```