Ultimate access to all questions.
After deploying a workload to your GKE cluster using kubectl apply -f app.yaml
and exposing it via a LoadBalancer service with kubectl apply -f service.yaml
, you enabled horizontal pod autoscaler to manage increased load by executing kubectl autoscale deployment [YOUR DEPLOYMENT] –cpu-percent=50 –min=1 –max=10
. Despite the autoscaler launching new pods, they fail with 'Insufficient cpu'. What is the most effective solution to resolve this issue?