0

is it possible to create a health check for an individual instance (GCE), which is not part of any instance group?

If I look at adding it to a "unmanaged instance group", is it then possible to create a health check for it?

Thanks in advance.

Grzenio
  • 35,875
  • 47
  • 158
  • 240
Roshan
  • 290
  • 3
  • 16
  • Possible duplicate of [How to set a health check on my single VM on GCP?](https://stackoverflow.com/questions/49766398/how-to-set-a-health-check-on-my-single-vm-on-gcp) – Adrian nieto macias Jun 18 '19 at 13:34

1 Answers1

0

Based on this documentation health checks work together with load balancing, you can check this to have a detailed information about how health checks work.

Usually, this health checks applies to an instance-group for auto healing, so it's not possible to apply a health check for a single instance.

  • Yes, that's what it seemed like to me too after googling some more after I posted - that Google Cloud's health checks are tied to auto-scaling and available for load-balancers and managed instance-groups only (and have no meaning for single instances probably). Thanks for your inputs. – Roshan Jun 19 '19 at 15:28