A cloud engineer is managing a Google Kubernetes Engine (GKE) Standard cluster hosting a critical microservice. During a peak traffic period, the Horizontal Pod Autoscaler (HPA) successfully increases the workload deployment replica count from 10 to 25. However, several newly created pods remain in a `Pending` state, displaying the scheduling error `0/3 nodes are available: 3 Insufficient memory`. Diagnostic checks confirm that the node pool's Cluster Autoscaler has reached its configured upper boundary of 3 nodes per zone. The application must scale out on compute nodes without altering container resource requests or converting the existing cluster operational mode. Which command should the engineer execute to allow the cluster to scale node capacity for the unscheduled workloads?
- gcloud container node-pools update pool-1 --cluster=prod-cluster --enable-autoscaling --min-nodes=1 --max-nodes=10 --zone=us-central1-aAnswer
- Bkubectl autoscale deployment web-app --max=50 --cpu-percent=80
- Cgcloud container clusters update prod-cluster --enable-autopilot --zone=us-central1-a
- Dgcloud container node-pools update pool-1 --cluster=prod-cluster --spot --zone=us-central1-a