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
This commit is contained in:
Matt Thompson 2017-08-29 14:39:01 -04:00
parent ee85d37ce9
commit caf196f798
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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'