stacklight-integration-tests/stacklight_tests/toolchain/toolchain_settings.py
Rodion Promyshlennikov 094fe3aafb Add tests for different Neutron configurations
Add test VLAN + DVR deploy.
Add test VxLAN + L2pop + DVR deploy.
Add test VLAN + L3HA deploy.
Add test VxLAN + L3HA deploy.
Small fixes in docstring for consistency.
Added controller HA configuration for cluster.

Change-Id: I9f827ed4aff755088855d8ca5656ad430a85feb7
2016-07-12 16:50:45 +03:00

55 lines
1.9 KiB
Python

# Copyright 2016 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.
from stacklight_tests.elasticsearch_kibana import (
plugin_settings as elasticsearch_settings)
from stacklight_tests.influxdb_grafana import (
plugin_settings as influxdb_settings)
from stacklight_tests.lma_collector import (
plugin_settings as collector_settings)
from stacklight_tests.lma_infrastructure_alerting import (
plugin_settings as infrastructure_alerting_settings)
name = 'toolchain'
stacklight_roles = (elasticsearch_settings.role_name +
influxdb_settings.role_name +
collector_settings.role_name +
infrastructure_alerting_settings.role_name)
base_nodes = {
'slave-01': ['controller'],
'slave-02': ['compute', 'cinder'],
'slave-03': stacklight_roles
}
ha_controller_nodes = {
'slave-01': ['controller'],
'slave-02': ['controller'],
'slave-03': ['controller'],
'slave-04': ['compute', 'cinder'],
'slave-05': stacklight_roles,
}
full_ha_nodes = {
'slave-01': ['controller'],
'slave-02': ['controller'],
'slave-03': ['controller'],
'slave-04': ['compute', 'cinder'],
'slave-05': ['compute', 'cinder'],
'slave-06': ['compute', 'cinder'],
'slave-07': stacklight_roles,
'slave-08': stacklight_roles,
'slave-09': stacklight_roles
}