Martin Kopec 87a4e8128d Remove aodh_plugin option
aodh_plugin option under service_available section is
deprecated since telemetry-tempest-plugin version 0.2.0 [1]
which is available since queens [2].

[1] https://github.com/openstack/telemetry-tempest-plugin/
    blob/0.2.0/telemetry_tempest_plugin/config.py#L31
[2] https://github.com/redhat-openstack/rdoinfo/blob/
    2c479b4311b7f8840576b891f6f955bbe1880c65/tags/queens.yml#L1042

Change-Id: I44b456c8ec98b11e0c865ffda7b311bc2c917b19
2019-03-05 21:48:08 +00:00

28 lines
821 B
Python

# Copyright 2019 Red Hat, Inc.
# All Rights Reserved.
#
# 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.
from config_tempest.services.base import Service
class AlarmingService(Service):
@staticmethod
def get_service_name():
return ['aodh']
@staticmethod
def get_codename():
return 'aodh'