I was wondering what the difference between an instance and an instance group are.
Can anyone explain the difference to me?
Why can we use Autoscaler with an instance group and not with a instance
I was wondering what the difference between an instance and an instance group are.
Can anyone explain the difference to me?
Why can we use Autoscaler with an instance group and not with a instance
In GCE, An instance is a single virtual machine that you can customise (CPU, network, endpoint, disk, etc) and manage by you (shutdown, run, build with new image, etc)
https://cloud.google.com/compute/docs/instances/
While an instance group is a collection of the instances above, for management. i.e. I have two groups, slow instances and fast instances.
Autoscaler is something that you can use with Managed Instance Group. This a group that is created by Instance Manager using an instance template.
https://cloud.google.com/compute/docs/instance-groups/
Hope it helps. Cheers.