In GKE can't turn on default-pool autoscaling (<is...
# getting-started
h
In GKE can't turn on default-pool autoscaling (issue) I wonder if someone has a workaround? Something like below that actually works?
Copy code
defaul_pool =  container.NodePool(
        "default-pool",
        # REQUIRES CLUSTER NAME
        location="europe-central2-a",
        autoscaling={..}
        ..
)

cluster = container.Cluster(
        "mycluster",
        location="europe-central2-a",
        node_pools=[default_pool],
        ..
)