mskw
mskw

Reputation: 10308

Auto scaling for Google container engine

Can GKE (Google Container Engine) do autoscaling? I know that it allows manual adjustment of node replication, but can it be configured some how to detect load and replicate automatically?

Upvotes: 6

Views: 1588

Answers (1)

tenfourty
tenfourty

Reputation: 2311

Updating my answer as Kubernetes now has this feature.

Kubernetes now supports horizontal scaling of Pods - http://kubernetes.io/v1.1/docs/user-guide/horizontal-pod-autoscaler.html

If you mean autoscaling of the nodes in GCE rather than the pods running inside it, then yes it can - you can turn on autoscaling for a managed instance group such as GCE - see the docs below but the short version is just edit the instance group to enable autoscaling.

https://cloud.google.com/compute/docs/autoscaler/

Upvotes: 5

Related Questions