Fix vcpu override var issue for logging hostvar.

loadbalancer_vm_server_vcpus is used instead of logging_vm_server_vcpus
for the vcpu override host_vars/logging1.yml file.  This review is to
correct the naming error.

Change-Id: I7f335eb8c8baf84ecc122abcba4c315512794b4a
Closes-Bug: 1775211
This commit is contained in:
Shannon Mitchell 2018-06-05 10:47:00 -05:00
parent 79f9027fa9
commit a047696f5c

View File

@ -19,7 +19,7 @@ server_hostname: 'logging1'
server_domain_name: 'openstack.local'
server_vm: true
server_vm_ram: '{{ logging_vm_server_ram | default(1024) }}'
server_vm_vcpus: '{{ loadbalancer_vm_server_vcpus | default(2) }}'
server_vm_vcpus: '{{ logging_vm_server_vcpus | default(2) }}'
server_vm_fixed_addr: '10.0.2.110'
server_vm_primary_network: 'dhcp'
server_image: "{{ default_vm_image }}"