I have created a standard gke cluster with one worker node and implemented cluster autoscaling using
gcloud container clusters update cluster-latest --enable-autoscaling --node-pool=default-pool --min-nodes=1 --max-nodes=2 --region=us-central1-c
also updated the cluster to use optimize-utilization profile using gcloud container clusters update cluster-latest --autoscaling-profile optimize-utilization --location=us-central1-c
Than I deployed my angular application with 1 replica , after i scaled my relica to 7 and new one worker node got created which handled the pods
when I scaled down the replica to 1 , I noticed that my Autoscaler is not deleting the other worker node as one node is enough to handle one replica.
my question is why it not scaling down , and what is the solution to scale it down.
I am attaching screenshot of autoscaling log
why it is not scaling down , also please provide solution i am searching the solution for last few days please help.

