Add config missing in rocky template

These nova.conf config were added while rocky was being added and
so didnt make it into the rocky nova.conf (since the template didnt
exist when the patches were started).

Change-Id: Ie4d3ba515cb0a6f9f7fa198a9ac1c05c4c2c233a
Related-Bug: #1804169
Related-Bug: #1799916
This commit is contained in:
Edward Hope-Morley 2019-02-28 17:04:47 +00:00
parent c9a19c4077
commit a37c470e1f
1 changed files with 12 additions and 0 deletions

View File

@ -124,6 +124,12 @@ vcpu_pin_set = {{ vcpu_pin_set }}
{% endif -%}
reserved_host_memory_mb = {{ reserved_host_memory }}
{% if reserved_huge_pages -%}
{% for value in reserved_huge_pages -%}
reserved_huge_pages = {{ value }}
{% endfor -%}
{% endif -%}
{% include "section-zeromq" %}
{% if default_availability_zone -%}
@ -215,6 +221,12 @@ rbd_secret_uuid = {{ rbd_secret_uuid }}
{% if live_migration_uri -%}
live_migration_uri = {{ live_migration_uri }}
{% endif -%}
{% if live_migration_permit_post_copy -%}
live_migration_permit_post_copy = {{ live_migration_permit_post_copy }}
{% endif -%}
{% if live_migration_permit_auto_converge -%}
live_migration_permit_auto_converge = {{ live_migration_permit_auto_converge }}
{% endif -%}
{% if disk_cachemodes -%}
disk_cachemodes = {{ disk_cachemodes }}
{% endif %}