Ultimate access to all questions.
To enhance the resilience of Compute Engine instances against crashes or system terminations, which configurations should be applied?
Explanation:
To ensure Compute Engine instances are resilient to crashes or terminations, two key configurations are recommended:
automaticRestart
availability policy to true
ensures that instances are automatically restarted if they crash or are terminated unexpectedly, enhancing availability and reducing downtime.onHostMaintenance
availability policy to migrate instances
allows Compute Engine to move instances to another host during planned maintenance, preventing service interruptions.Thus, the correct configurations are:
automaticRestart
to true
(Option C)onHostMaintenance
to migrate instances
(Option D)These settings collectively improve instance resilience against failures and maintenance events.