From 73862e4ea030de857927c23f8f88263f8d3365e3 Mon Sep 17 00:00:00 2001
From: Pawel Wieczorek
Date: Fri, 24 Jan 2020 11:58:07 +0100
Subject: Modify minimal Vagrant environment resources
Previously allocated resources were underestimated. Devstack resources
will remain lowered until core ONAP instance is stabilized.
Issue-ID: ONAPARC-551
Change-Id: Id4eb6b2318b71b162f6a1ed6208482ebeb31fe5a
Signed-off-by: Pawel Wieczorek
---
bootstrap/vagrant-minimal-onap/README.rst | 6 +++---
bootstrap/vagrant-minimal-onap/Vagrantfile | 8 ++++----
2 files changed, 7 insertions(+), 7 deletions(-)
(limited to 'bootstrap/vagrant-minimal-onap')
diff --git a/bootstrap/vagrant-minimal-onap/README.rst b/bootstrap/vagrant-minimal-onap/README.rst
index 95f2ac1c1..370c37db9 100644
--- a/bootstrap/vagrant-minimal-onap/README.rst
+++ b/bootstrap/vagrant-minimal-onap/README.rst
@@ -31,13 +31,13 @@ Requirements
+-------------+-----+-------+
| Operator | 1 | 1GiB |
+-------------+-----+-------+
-| Devstack | 2 | 6GiB |
+| Devstack | 1 | 4GiB |
+-------------+-----+-------+
| K8s Control | 1 | 1GiB |
+-------------+-----+-------+
-| K8s Worker | 2 | 12GiB |
+| K8s Worker | 4 | 20GiB |
+-------------+-----+-------+
-| TOTAL | 6 | 20GiB |
+| TOTAL | 7 | 26GiB |
+-------------+-----+-------+
Table above is based on current experience and may be subject to change.
diff --git a/bootstrap/vagrant-minimal-onap/Vagrantfile b/bootstrap/vagrant-minimal-onap/Vagrantfile
index 5272dd6af..3fe7322ab 100644
--- a/bootstrap/vagrant-minimal-onap/Vagrantfile
+++ b/bootstrap/vagrant-minimal-onap/Vagrantfile
@@ -15,14 +15,14 @@ apt_prefs_dir = "/etc/apt/apt.conf.d"
apt_prefs = "95silent-approval"
vm_memory = 1 * 1024
-vm_memory_os = 6 * 1024
-vm_memory_onap = 12 * 1024
+vm_memory_os = 4 * 1024
+vm_memory_onap = 20 * 1024
vm_cpu = 1
-vm_cpus = 2
+vm_cpus = 4
vm_box = "generic/ubuntu1804"
operation = { name: 'operator', hostname: 'operator', ip: '172.17.4.254', cpus: vm_cpu, memory: vm_memory }
-devstack = { name: 'devstack', hostname: 'devstack', ip: '172.17.4.200', cpus: vm_cpus, memory: vm_memory_os }
+devstack = { name: 'devstack', hostname: 'devstack', ip: '172.17.4.200', cpus: vm_cpu, memory: vm_memory_os }
control = { name: 'control', hostname: 'control', ip: '172.17.4.100', cpus: vm_cpu, memory: vm_memory }
worker = { name: 'worker', hostname: 'worker', ip: '172.17.4.101', cpus: vm_cpus, memory: vm_memory_onap }
--
cgit 1.2.3-korg