Hi
Hi @lompat31,
Welcome to Google Cloud Community!
It is not possible to directly schedule a cronjob on only one instance in an autoscaling group as all instances in an instance group have to be identical using the same template. However, if you need to run the cronjob from within a single instance, you can use a separate instance that is not part of the managed instance group (MIG). This will also avoid the problem where if an instance autoscales, and/or gets re-deployed by the autohealing property of the MIG, the cronjob might not be able to run completely.
In addition, you might also want to consider the following GCP Services to set up your Cronjob:
I hope the above information is helpful.