Remove "verbose" option for ironic conductor

This was already deprecated in Mitaka,
so it's time remove it completely.

oslo.log: https://review.openstack.org/314573
ironic: https://review.openstack.org/315990

Change-Id: I7e7166e3e0a7d3abd3bcdd405554348f71c617c7
Related-Bug: #1578724
This commit is contained in:
Michael Polenchuk 2016-05-17 12:58:48 +03:00
parent 8e9f3252a2
commit 038d11e2a7
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,