Saving and Restoring GCP instance snapshots
This post lists the full steps for how to snapshot/restore a Google Cloud Platform (GCP) compute instance, illustrating a few things that might relieve some frustration about performing this "simple operation" in the Googleplex.
Recently I was making a lot of changes to some GitLab virtual machines as I learnt about setting up GitLab Geo, and often I would make mistakes and need to start over. This is very doable with virtual machines managed through infrastructure-as-code with Terraform and Ansible, as we do with the GitLab Environment Toolkit, but it does take about 25 minutes to spin up each new virtual machine and install GitLab.
Twenty-five minutes is amazing compared to doing it all by hand, but I felt it would be faster to use snapshots of the machine instead:
- Build new machines for Geo primary and secondary
- Snapshot them before making the tricky changes
- and then if one breaks, restore the snapshot.
The virtual machines are GCP compute instances, so I needed to learn how to do this with the gcloud compute
command-line interface to GCP.