7d86ec48e6
This change removes the Neutron agents AFD when Contrail plugin is used to avoid reporting a DOWN status for Neutron. It also removes the collect of the metrics of the Neutron agents. Change-Id: I02ecb67489d244aca85bc4b1e3d4a5cd79df1b5b Closes-Bug: #1546017
44 lines
1.4 KiB
Puppet
44 lines
1.4 KiB
Puppet
# Copyright 2015 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
$plugin_data = hiera_hash('lma_collector', undef)
|
|
|
|
if ($plugin_data) {
|
|
$storage_options = hiera_hash('storage', {})
|
|
$tls_enabled = hiera('public_ssl', false)
|
|
$ceilometer = hiera_hash('ceilometer', {})
|
|
$ceilometer_enabled = pick($ceilometer['enabled'], false)
|
|
$contrail_plugin = hiera('contrail', false)
|
|
|
|
$elasticsearch_mode = $plugin_data['elasticsearch_mode']
|
|
$monitor_elasticsearch = $elasticsearch_mode ? {
|
|
'local' => true,
|
|
default => false,
|
|
}
|
|
|
|
$influxdb_mode = $plugin_data['influxdb_mode']
|
|
$monitor_influxdb = $influxdb_mode ? {
|
|
'local' => true,
|
|
default => false,
|
|
}
|
|
|
|
fuel_lma_collector::hiera_data { 'gse_filters':
|
|
content => template('fuel_lma_collector/gse_filters.yaml.erb')
|
|
}
|
|
|
|
fuel_lma_collector::hiera_data { 'alarming':
|
|
content => template('fuel_lma_collector/alarming.yaml.erb')
|
|
}
|
|
}
|