From 986326714596d3ec0c643b267ba45f74e584ab13 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Tue, 8 Nov 2016 09:21:23 -0600 Subject: [PATCH] resolve config deprecations Change-Id: I984b8c5c466bf503edbcb5226df1e4998826011f Signed-off-by: Kevin Carter --- defaults/main.yml | 2 -- templates/nova.conf.j2 | 14 +++++--------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 8666b629..9932dfe5 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -86,7 +86,6 @@ nova_api_db_pool_timeout: 30 ## RabbitMQ info ## Configuration for RPC communications -nova_rpc_backend: rabbit nova_rpc_thread_pool_size: 64 nova_rpc_conn_pool_size: 30 nova_rpc_response_timeout: 60 @@ -293,7 +292,6 @@ nova_quota_injected_files: 5 nova_quota_instances: 10 nova_quota_key_pairs: 100 nova_quota_metadata_items: 128 -nova_quota_networks: 3 nova_quota_ram: 51200 nova_quota_security_group_rules: 20 nova_quota_security_groups: 10 diff --git a/templates/nova.conf.j2 b/templates/nova.conf.j2 index f8a1ed4b..283b5720 100644 --- a/templates/nova.conf.j2 +++ b/templates/nova.conf.j2 @@ -15,10 +15,6 @@ rootwrap_config = /etc/nova/rootwrap.conf service_down_time = 120 default_schedule_zone = {{ nova_default_schedule_zone }} -{% if nova_external_ssl | bool %} -secure_proxy_ssl_header = {{ nova_secure_proxy_ssl_header }} -{% endif %} - # Quota quota_cores = {{ nova_quota_cores }} quota_fixed_ips = {{ nova_quota_fixed_ips }} @@ -29,7 +25,6 @@ quota_injected_files = {{ nova_quota_injected_files }} quota_instances = {{ nova_quota_instances }} quota_key_pairs = {{ nova_quota_key_pairs }} quota_metadata_items = {{ nova_quota_metadata_items }} -quota_networks = {{ nova_quota_networks }} quota_ram = {{ nova_quota_ram }} quota_security_group_rules = {{ nova_quota_security_group_rules }} quota_security_groups = {{ nova_quota_security_groups }} @@ -76,11 +71,9 @@ enabled_apis = {{ nova_enabled_apis }} osapi_compute_workers = {{ nova_osapi_compute_workers | default(api_threads) }} # Rpc all -rpc_backend = {{ nova_rpc_backend }} transport_url = rabbit://{% for host in nova_rabbitmq_servers.split(',') %}{{ nova_rabbitmq_userid }}:{{ nova_rabbitmq_password }}@{{ host }}:{{ nova_rabbitmq_port }}{% if not loop.last %},{% else %}/{{ nova_rabbitmq_vhost }}{% endif %}{% endfor %} executor_thread_pool_size = {{ nova_rpc_thread_pool_size }} -rpc_conn_pool_size = {{ nova_rpc_conn_pool_size }} rpc_response_timeout = {{ nova_rpc_response_timeout }} # Metadata @@ -206,7 +199,6 @@ ovs_bridge = {{ nova_network_services[nova_network_type]['ovs_bridge'] }} {% endif %} [conductor] -topic = conductor workers = {{ nova_conductor_workers | default(api_threads) }} @@ -258,6 +250,8 @@ lock_path = {{ nova_lock_path }} [oslo_messaging_rabbit] rabbit_use_ssl = {{ nova_rabbitmq_use_ssl }} +rpc_conn_pool_size = {{ nova_rpc_conn_pool_size }} + {% if nova_virt_type == 'ironic' %} [ironic] @@ -278,7 +272,6 @@ auth_type = {{ ironic_keystone_auth_plugin }} inject_partition = {{ nova_libvirt_inject_partition }} inject_password = {{ nova_libvirt_inject_password }} inject_key = {{ nova_libvirt_inject_key }} -use_usb_tablet = False use_virtio_for_bridges = True cpu_mode = {{ nova_cpu_mode }} virt_type = {{ nova_virt_type }} @@ -301,6 +294,9 @@ disk_cachemodes = {{ nova_libvirt_disk_cachemodes }} [wsgi] api_paste_config = /etc/nova/api-paste.ini +{% if nova_external_ssl | bool %} +secure_proxy_ssl_header = {{ nova_secure_proxy_ssl_header }} +{% endif %} [scheduler] max_attempts = {{ nova_scheduler_max_attempts }}