From 7b893c3775aadb29eef0d7300c29aeafc4fc96c1 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Thu, 18 Oct 2018 13:11:21 +0100 Subject: [PATCH] MNAIO: Increase default infra_vm_server_ram to 16384 The current default of 8GB simply does not work for a default deployment of Rocky/Stein without doing a severe amount of worker tuning. While we do some work to improve the default number of workers, we should rather increase the default value for these VM's. Change-Id: Ic31bd9145e7feb67fa5eacc602c6152ecde1a47c --- multi-node-aio/playbooks/group_vars/infra_hosts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi-node-aio/playbooks/group_vars/infra_hosts.yml b/multi-node-aio/playbooks/group_vars/infra_hosts.yml index 98f2db57..bc56e42b 100644 --- a/multi-node-aio/playbooks/group_vars/infra_hosts.yml +++ b/multi-node-aio/playbooks/group_vars/infra_hosts.yml @@ -17,7 +17,7 @@ ansible_os_family: "{{ images[default_vm_image]['image_type'] }}" server_domain_name: 'openstack.local' # str - required, domain name of server server_vm: true # bool - not required, used to specify a host is to become a VM -server_vm_ram: '{{ infra_vm_server_ram | default(8192) }}' # int - not required, used to specify ram when provisioning a VM +server_vm_ram: '{{ infra_vm_server_ram | default(16384) }}' # int - not required, used to specify ram when provisioning a VM server_vm_vcpus: '{{ infra_vm_server_vcpus | default(4) }}' # int - not required, used to specify vcpus when provisioning a VM server_vm_primary_network: 'dhcp' # str - not required, primary network used to kick the VM server_image: "{{ default_vm_image }}" # str - required, image name