From 0bc1f0b7733549f9be9e3065590ab13f3fdd4439 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?An=C5=BEe=20=C5=BDitnik?= <anze.zitnik@xlab.si>
Date: Tue, 30 Nov 2021 13:42:14 +0100
Subject: [PATCH] Change RAM size of multiple machines to 1G because of clamav
 timeouts issue

---
 environments/full-setup/Vagrantfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/environments/full-setup/Vagrantfile b/environments/full-setup/Vagrantfile
index de5e3ef..f84692a 100644
--- a/environments/full-setup/Vagrantfile
+++ b/environments/full-setup/Vagrantfile
@@ -13,14 +13,14 @@ servers=[
     :hostname => "agent1",
     :ip => "192.168.33.11",
     :box => "centos/8",
-    :ram => 512,
+    :ram => 1024,
     :cpu => 1
   },
   {
     :hostname => "agent2",
     :ip => "192.168.33.12",
     :box => "centos/8",
-    :ram => 512,
+    :ram => 1024,
     :cpu => 1
   },
   {
@@ -34,7 +34,7 @@ servers=[
     :hostname => "clouditor",
     :ip => "192.168.33.14",
     :box => "centos/8",
-    :ram => 512,
+    :ram => 1024,
     :cpu => 1
   }
 ]
@@ -50,4 +50,4 @@ Vagrant.configure(2) do |config|
           end
       end
   end
-end
\ No newline at end of file
+end
-- 
GitLab