Delete 'verbose' parameter from ironic-conductor

Parameter 'verbose' is deprecated and will be removed from
ironic ASAP, so we don't need to use it at all.

Change-Id: Ib7fe815ca07b48ff64fd83cd93c08b444d341166
Closes-Bug: #1582727
This commit is contained in:
Stanislaw Bogatkin 2016-05-17 18:08:14 +03:00
parent 2b6e4f4a30
commit bf8f1962a3
2 changed files with 1 additions and 3 deletions

View File

@ -136,7 +136,7 @@
$.ironic.enabled and changedAny($.network_scheme, $.ironic,
$.network_metadata.vips, $.get('database_vip'),
$.get('neutron_endpoint'), $.get('glance_api_servers'),
$.get('amqp_hosts'), $.debug, $.verbose, $.get('use_syslog'),
$.get('amqp_hosts'), $.debug, $.get('use_syslog'),
$.get('syslog_log_facility_ironic'), $.rabbit, $.storage,
$.get('kombu_compression'))
cross-depends:

View File

@ -19,7 +19,6 @@ class openstack_tasks::roles::ironic_conductor {
$amqp_hosts = hiera('amqp_hosts')
$rabbit_hosts = split($amqp_hosts, ',')
$debug = hiera('debug', false)
$verbose = hiera('verbose', true)
$use_syslog = hiera('use_syslog', true)
$syslog_log_facility_ironic = hiera('syslog_log_facility_ironic', 'LOG_USER')
$rabbit_hash = hiera_hash('rabbit')
@ -64,7 +63,6 @@ class openstack_tasks::roles::ironic_conductor {
}
class { '::ironic':
verbose => $verbose,
debug => $debug,
enabled_drivers => ['fuel_ssh', 'fuel_ipmitool', 'fake', 'fuel_libvirt'],
rabbit_hosts => $rabbit_hosts,