Ultimate access to all questions.
You are setting up a preemptible VM instance named 'preempt' for temporary use as scratch space. To ensure the disk contents remain available for reuse after the VM is preempted, which gcloud command should you use?
Explanation:
The correct answer is A because creating a preemptible instance requires the --preemptible
flag, and to ensure the disk contents are not deleted upon instance termination, the --no-boot-disk-auto-delete
flag must be included. This setup allows the disk contents to be reused if the VM is preempted.