From da5ac0ca344effaeef2b080ac8735aa65aa7b579 Mon Sep 17 00:00:00 2001 From: Ben Schwartz Date: Thu, 12 Aug 2021 14:43:15 -0400 Subject: [PATCH] Switch instance type to e2-micro e2-micro is the new GCP Free Tier instance type. It's also faster and has more RAM than the old f1-micro type. --- src/server_manager/web_app/gcp_account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server_manager/web_app/gcp_account.ts b/src/server_manager/web_app/gcp_account.ts index ad022934..02ef4510 100644 --- a/src/server_manager/web_app/gcp_account.ts +++ b/src/server_manager/web_app/gcp_account.ts @@ -49,7 +49,7 @@ export class GcpAccount implements gcp.Account { private static readonly OUTLINE_PROJECT_NAME = 'Outline servers'; private static readonly OUTLINE_FIREWALL_NAME = 'outline'; private static readonly OUTLINE_FIREWALL_TAG = 'outline'; - private static readonly MACHINE_SIZE = 'f1-micro'; + private static readonly MACHINE_SIZE = 'e2-micro'; private static readonly REQUIRED_GCP_SERVICES = ['compute.googleapis.com']; private readonly apiClient: gcp_api.RestApiClient;