From caf196f798396bff498243d239bf92b9710c3ef0 Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Tue, 29 Aug 2017 14:39:01 -0400 Subject: [PATCH] Bump compute RAM to 8192MB Currently, instances will not boot as nova.conf is configured with `reserved_host_memory_mb: 2048` while the compute VMs themselves only have 2048MB of RAM assigned. This commit bumps the compute VMs to have 8192MB of RAM so that instances can be successfully booted. NOTE: Prior to all the recent refactors that have taken place, we were giving the compute VMs 9216MB of RAM. I'm not entirely sure why this number was chosen but can happily change 8192MB to 9216MB to match what was being used before. Change-Id: Ie36fcb4fb3f3b5bce27f2851fba0afc6e0d1966a --- multi-node-aio/playbooks/host_vars/compute1.yml | 2 +- multi-node-aio/playbooks/host_vars/compute2.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/multi-node-aio/playbooks/host_vars/compute1.yml b/multi-node-aio/playbooks/host_vars/compute1.yml index cc6779d9..301781da 100644 --- a/multi-node-aio/playbooks/host_vars/compute1.yml +++ b/multi-node-aio/playbooks/host_vars/compute1.yml @@ -17,7 +17,7 @@ ansible_os_family: "{{ images[default_vm_image]['image_type'] }}" server_hostname: 'compute1' server_vm: true -server_vm_ram: 2048 +server_vm_ram: 8192 server_vm_vcpus: 4 server_vm_fixed_addr: '10.0.2.120' server_vm_primary_network: 'dhcp' diff --git a/multi-node-aio/playbooks/host_vars/compute2.yml b/multi-node-aio/playbooks/host_vars/compute2.yml index cfe6d9ec..79484e80 100644 --- a/multi-node-aio/playbooks/host_vars/compute2.yml +++ b/multi-node-aio/playbooks/host_vars/compute2.yml @@ -17,7 +17,7 @@ ansible_os_family: "{{ images[default_vm_image]['image_type'] }}" server_hostname: 'compute2' server_vm: true -server_vm_ram: 2048 +server_vm_ram: 8192 server_vm_vcpus: 4 server_vm_fixed_addr: '10.0.2.121' server_vm_primary_network: 'dhcp'