Allow additional nova.conf variables to be set
Add variables for the following 2 nova.conf vars: image_cache_manager_interval (default 0) remove_unused_resized_minimum_age_seconds (default 3600) Change-Id: Ifa52ab226bfe695b64c32c94dd3ffccf465345a0 Closes-Bug: #1424808
This commit is contained in:
parent
93ebd5944b
commit
4cd1625544
@ -134,6 +134,8 @@ nova_libvirt_vif_driver: nova.virt.libvirt.vif.NeutronLinuxBridgeVIFDriver
|
|||||||
nova_firewall_driver: nova.virt.firewall.NoopFirewallDriver
|
nova_firewall_driver: nova.virt.firewall.NoopFirewallDriver
|
||||||
nova_compute_driver: libvirt.LibvirtDriver
|
nova_compute_driver: libvirt.LibvirtDriver
|
||||||
nova_max_age: 0
|
nova_max_age: 0
|
||||||
|
nova_remove_unused_resized_minimum_age_seconds: 3600
|
||||||
|
nova_image_cache_manager_interval: 0
|
||||||
|
|
||||||
# Nova quota
|
# Nova quota
|
||||||
nova_quota_injected_file_content_bytes: 10240
|
nova_quota_injected_file_content_bytes: 10240
|
||||||
|
@ -43,6 +43,7 @@ instance_name_template = instance-%08x
|
|||||||
instances_path = {{ nova_system_home_folder }}/instances
|
instances_path = {{ nova_system_home_folder }}/instances
|
||||||
api_paste_config = /etc/nova/api-paste.ini
|
api_paste_config = /etc/nova/api-paste.ini
|
||||||
allow_resize_to_same_host = True
|
allow_resize_to_same_host = True
|
||||||
|
image_cache_manager_interval = {{ nova_image_cache_manager_interval }}
|
||||||
|
|
||||||
# Api's
|
# Api's
|
||||||
enabled_apis = osapi_compute,metadata,ec2
|
enabled_apis = osapi_compute,metadata,ec2
|
||||||
@ -181,3 +182,4 @@ use_usb_tablet = False
|
|||||||
use_virtio_for_bridges = True
|
use_virtio_for_bridges = True
|
||||||
cpu_mode = {{ nova_cpu_mode }}
|
cpu_mode = {{ nova_cpu_mode }}
|
||||||
virt_type = {{ nova_virt_type }}
|
virt_type = {{ nova_virt_type }}
|
||||||
|
remove_unused_resized_minimum_age_seconds = {{ nova_remove_unused_resized_minimum_age_seconds }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user