I've created a health check, but it seems that it's not being applied to my VM instance. I read the documentation, must I use load balancing first?
相关问题
- Why do Dataflow steps not start?
- __call__() missing 1 required positional argument:
- Cannot upload large file to Google Cloud Storage
- How to set query parameters dialogflow php sdk
- Google Data Studio connect to cloud datastore
相关文章
- How do I create a persistent volume claim with Rea
- GKE does not scale to/from 0 when autoscaling enab
- Can't push image to google container registry
- Your application has authenticated using end user
-
Google App Engine Error:
INVALID_ARGUMENT - How to create a namespace if it doesn't exists
- How can I make http call to DialogFlow V2 using si
- Kafka to Google Cloud Platform Dataflow ingestion
The health checks in the linked documentation are specifically for Load Balancing.
However, it is possible to set up health checks for managed instance groups (without Load Balancing) so if your Compute Engine instance is part of a managed instance group, then you can add a health check.
If a health check detects that a service has failed on an instance, the group will automatically re-create the instance.
You can find detailed information on these instance group health checks here.