From 33cb9134ddac7b7059314ba2c4e9fd0ea54f8fbc Mon Sep 17 00:00:00 2001
From: Evangelos Foutras <evangelos@foutrelis.com>
Date: Sat, 5 Mar 2022 09:35:00 +0200
Subject: [PATCH] Resize gitlab volume from 250G to 200G

250 is not a nice round number, whereas 200 is.
---
 tf-stage1/archlinux.tf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tf-stage1/archlinux.tf b/tf-stage1/archlinux.tf
index 6c504d2a6..6d101be46 100644
--- a/tf-stage1/archlinux.tf
+++ b/tf-stage1/archlinux.tf
@@ -477,7 +477,7 @@ variable "gitlab_pages_ipv6" {
 
 resource "hcloud_volume" "gitlab" {
   name      = "gitlab"
-  size      = 250
+  size      = 200
   server_id = hcloud_server.machine["gitlab.archlinux.org"].id
 }
 
-- 
GitLab