A cloud engineer manages a high-throughput processing pipeline deployed on a Google Kubernetes Engine (GKE) Standard cluster. The workload manifests define Pods with heavy CPU resource requests ( per Pod). During peak loads, the Horizontal Pod Autoscaler (HPA) scales the deployment replica count up, causing multiple newly created Pods to remain in the `Pending` state with the event reason `FailedScheduling`. Inspection reveals that the existing node pool has reached its maximum configured size under Cluster Autoscaler, and no existing nodes have sufficient unallocated CPU to schedule the pending Pods. The engineer wants GKE to automatically provision entirely new node pools with appropriate machine types and scale limits when existing node pools cannot accommodate Pod resource requests. Which command should the engineer execute to meet this operational requirement?
- Akubectl autoscale deployment pipeline-processor --cpu-percent=50 --min=5 --max=100
- Bgcloud container clusters update production-cluster --enable-autopilot --region=us-central1
- gcloud container clusters update production-cluster --enable-autoprovisioning --max-cpu=128 --max-memory=512 --region=us-central1Cevap
- Dgcloud container node-pools create spot-pool --cluster=production-cluster --enable-spot --num-nodes=50 --region=us-central1