Drop remaining options for panko
... because panko was retired several cycles ago and its tests were all removed. Change-Id: I332f7b45102da65067fde495ec8b37e373dd60d3
This commit is contained in:
@@ -45,16 +45,13 @@ telemetry_group = cfg.OptGroup(name='telemetry',
|
|||||||
telemetry_services_group = cfg.OptGroup(name='telemetry_services',
|
telemetry_services_group = cfg.OptGroup(name='telemetry_services',
|
||||||
title='Telemetry Services')
|
title='Telemetry Services')
|
||||||
|
|
||||||
event_group = cfg.OptGroup(name='event',
|
|
||||||
title='Event Service Options')
|
|
||||||
|
|
||||||
alarming_group = cfg.OptGroup(name='alarming_plugin',
|
alarming_group = cfg.OptGroup(name='alarming_plugin',
|
||||||
title='Alarming Service Options')
|
title='Alarming Service Options')
|
||||||
|
|
||||||
metric_group = cfg.OptGroup(name='metric',
|
metric_group = cfg.OptGroup(name='metric',
|
||||||
title='Metric Service Options')
|
title='Metric Service Options')
|
||||||
|
|
||||||
TelemetryGroup = [
|
telemetry_opts = [
|
||||||
cfg.IntOpt('notification_wait',
|
cfg.IntOpt('notification_wait',
|
||||||
default=120,
|
default=120,
|
||||||
help="The seconds to wait for notifications which "
|
help="The seconds to wait for notifications which "
|
||||||
@@ -110,18 +107,7 @@ telemetry_services_opts = [
|
|||||||
help="Database used by the aodh service"),
|
help="Database used by the aodh service"),
|
||||||
]
|
]
|
||||||
|
|
||||||
event_opts = [
|
alarming_opts = [
|
||||||
cfg.StrOpt('catalog_type',
|
|
||||||
default='event',
|
|
||||||
help="Catalog type of the Event service."),
|
|
||||||
cfg.StrOpt('endpoint_type',
|
|
||||||
default='publicURL',
|
|
||||||
choices=['public', 'admin', 'internal',
|
|
||||||
'publicURL', 'adminURL', 'internalURL'],
|
|
||||||
help="The endpoint type to use for the event service."),
|
|
||||||
]
|
|
||||||
|
|
||||||
AlarmingGroup = [
|
|
||||||
cfg.StrOpt('catalog_type',
|
cfg.StrOpt('catalog_type',
|
||||||
default='alarming',
|
default='alarming',
|
||||||
help="Catalog type of the Alarming service."),
|
help="Catalog type of the Alarming service."),
|
||||||
|
|||||||
@@ -36,30 +36,25 @@ class TelemetryTempestPlugin(plugins.TempestPlugin):
|
|||||||
tempest_config.service_option)
|
tempest_config.service_option)
|
||||||
config.register_opt_group(
|
config.register_opt_group(
|
||||||
conf, tempest_config.telemetry_group,
|
conf, tempest_config.telemetry_group,
|
||||||
tempest_config.TelemetryGroup)
|
tempest_config.telemetry_opts)
|
||||||
config.register_opt_group(
|
config.register_opt_group(
|
||||||
conf, tempest_config.telemetry_services_group,
|
conf, tempest_config.telemetry_services_group,
|
||||||
tempest_config.telemetry_services_opts)
|
tempest_config.telemetry_services_opts)
|
||||||
config.register_opt_group(
|
|
||||||
conf, tempest_config.event_group,
|
|
||||||
tempest_config.event_opts)
|
|
||||||
config.register_opt_group(
|
config.register_opt_group(
|
||||||
conf, tempest_config.alarming_group,
|
conf, tempest_config.alarming_group,
|
||||||
tempest_config.AlarmingGroup)
|
tempest_config.alarming_opts)
|
||||||
config.register_opt_group(
|
config.register_opt_group(
|
||||||
conf, tempest_config.metric_group,
|
conf, tempest_config.metric_group,
|
||||||
tempest_config.metric_opts)
|
tempest_config.metric_opts)
|
||||||
|
|
||||||
def get_opt_lists(self):
|
def get_opt_lists(self):
|
||||||
return [(tempest_config.telemetry_group.name,
|
return [(tempest_config.telemetry_group.name,
|
||||||
tempest_config.TelemetryGroup),
|
tempest_config.telemetry_opts),
|
||||||
(tempest_config.telemetry_services_group.name,
|
(tempest_config.telemetry_services_group.name,
|
||||||
tempest_config.telemetry_services_opts),
|
tempest_config.telemetry_services_opts),
|
||||||
(tempest_config.event_group.name,
|
|
||||||
tempest_config.event_opts),
|
|
||||||
(config.service_available_group.name,
|
(config.service_available_group.name,
|
||||||
tempest_config.service_option),
|
tempest_config.service_option),
|
||||||
(tempest_config.alarming_group.name,
|
(tempest_config.alarming_group.name,
|
||||||
tempest_config.AlarmingGroup),
|
tempest_config.alarming_opts),
|
||||||
(tempest_config.metric_group.name,
|
(tempest_config.metric_group.name,
|
||||||
tempest_config.metric_opts)]
|
tempest_config.metric_opts)]
|
||||||
|
|||||||
Reference in New Issue
Block a user