once in a while we need a single server for a specific purpose that won't get high traffic. For my scenario, this server requires a static external IP
I'm wondering what is the best way to have a high-available single server with static external IP on GCP?
Usually, we'd choose to create an instance-group with 1 minimal and 1 maximum instance, but that wouldn't keep the static IP for egress traffic after an instance crash/recreation. So, I'd have to create an instance-group with no external IP and make the egress traffic going through a NAT Gateway + a Load Balancer for another static IP for the ingress traffic.
The problem is, that sounds too much for a single server.
On AWS it can be achieved in an easier way. It's just:
- Launching one instance
- Associate an external IP address to it
- Create a Life cycle snapshot for backing up data
- Create alarm to restart or restore the instance in case of system or instance failure
So, my question is: Is there some easier way to achieve this on Google Cloud Platform?
It is entirely possible to do in GCP what you're asking but it not easier. At least from the list of steps perspective.
Here's how you can do it: