blob: 0587a5c46a0ea18b708c423bbf21dbdee93a6ad6 [file] [log] [blame]
Jude Cross986e3f52017-07-24 14:57:20 -07001# Copyright 2016 Rackspace Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15
16from oslo_config import cfg
Michael Johnson0a0f9b32019-01-02 16:58:21 -080017from oslo_log import log as logging
Ilya Bumarskovcea9b6b2023-03-16 14:12:09 +040018from tempest import config
Jude Cross986e3f52017-07-24 14:57:20 -070019
20from octavia_tempest_plugin.common import constants as const
21
Michael Johnson0a0f9b32019-01-02 16:58:21 -080022
23LOG = logging.getLogger(__name__)
24
Jude Cross986e3f52017-07-24 14:57:20 -070025service_available_group = cfg.OptGroup(name='service_available',
26 title='Available OpenStack Services')
27
28ServiceAvailableGroup = [
29 cfg.BoolOpt('load_balancer',
30 default=True,
31 help="Whether or not the load-balancer service is expected "
32 "to be available."),
33]
34
35octavia_group = cfg.OptGroup(name='load_balancer',
36 title='load-balancer service options')
37
38OctaviaGroup = [
39 # Tempest plugin common options
40 cfg.StrOpt("region",
41 default="",
42 help="The region name to use. If empty, the value "
43 "of identity.region is used instead. If no such region "
44 "is found in the service catalog, the first found one is "
45 "used."),
46 cfg.StrOpt('catalog_type',
47 default='load-balancer',
48 help='Catalog type of the Octavia service.'),
49 cfg.StrOpt('endpoint_type',
50 default='publicURL',
51 choices=['public', 'admin', 'internal',
52 'publicURL', 'adminURL', 'internalURL'],
53 help="The endpoint type to use for the load-balancer service"),
Michael Johnson6a9236a2020-08-04 23:54:54 +000054 cfg.FloatOpt('build_interval',
55 default=5,
56 help='Time in seconds between build status checks for '
57 'non-load-balancer resources to build'),
Jude Cross986e3f52017-07-24 14:57:20 -070058 cfg.IntOpt('build_timeout',
Jacky Hu2b95f2f2018-09-30 09:12:25 +080059 default=300,
Jude Cross986e3f52017-07-24 14:57:20 -070060 help='Timeout in seconds to wait for non-load-balancer '
61 'resources to build'),
Michael Johnson0a0f9b32019-01-02 16:58:21 -080062 cfg.StrOpt('octavia_svc_username', default='admin',
63 help='The service_auth username the Octavia services are using'
64 'to access other OpenStack services.'),
Bas de Bruijne530a88a2022-12-15 11:12:45 -040065 cfg.BoolOpt('log_user_roles',
66 default=True,
67 help='Log the user roles at the start of every test.'),
Jude Cross986e3f52017-07-24 14:57:20 -070068 # load-balancer specific options
Michael Johnson6a9236a2020-08-04 23:54:54 +000069 cfg.FloatOpt('check_interval',
70 default=5,
71 help='Interval to check for status changes.'),
Jude Cross986e3f52017-07-24 14:57:20 -070072 cfg.IntOpt('check_timeout',
Michael Johnson6d99fc62018-07-22 16:04:48 -070073 default=120,
Jude Cross986e3f52017-07-24 14:57:20 -070074 help='Timeout, in seconds, to wait for a status change.'),
75 cfg.BoolOpt('test_with_noop',
76 default=False,
77 help='Runs the tests assuming no-op drivers are being used. '
78 'Tests will assume no actual amphora are created.'),
Michael Johnson6a9236a2020-08-04 23:54:54 +000079 cfg.FloatOpt('lb_build_interval',
80 default=10,
81 help='Time in seconds between build status checks for a '
82 'load balancer.'),
Jude Cross986e3f52017-07-24 14:57:20 -070083 cfg.IntOpt('lb_build_timeout',
84 default=900,
85 help='Timeout in seconds to wait for a '
86 'load balancer to build.'),
87 cfg.StrOpt('member_role',
88 default='load-balancer_member',
89 help='The load balancing member RBAC role.'),
90 cfg.StrOpt('admin_role',
91 default='load-balancer_admin',
92 help='The load balancing admin RBAC role.'),
Michael Johnson6006de72021-02-21 01:42:39 +000093 cfg.StrOpt('observer_role',
94 default='load-balancer_observer',
95 help='The load balancing observer RBAC role.'),
96 cfg.StrOpt('global_observer_role',
97 default='load-balancer_global_observer',
98 help='The load balancing global observer RBAC role.'),
Jude Cross986e3f52017-07-24 14:57:20 -070099 cfg.IntOpt('scp_connection_timeout',
100 default=5,
101 help='Timeout in seconds to wait for a '
102 'scp connection to complete.'),
103 cfg.IntOpt('scp_connection_attempts',
104 default=20,
105 help='Retries for scp to attempt to connect.'),
106 cfg.StrOpt('provider',
107 default='octavia',
108 help='The provider driver to use for the tests.'),
109 cfg.StrOpt('RBAC_test_type', default=const.ADVANCED,
Michael Johnson6006de72021-02-21 01:42:39 +0000110 choices=[const.ADVANCED, const.KEYSTONE_DEFAULT_ROLES,
111 const.OWNERADMIN, const.NONE],
Jude Cross986e3f52017-07-24 14:57:20 -0700112 help='Type of RBAC tests to run. "advanced" runs the octavia '
113 'default RBAC tests. "owner_or_admin" runs the legacy '
Michael Johnson6006de72021-02-21 01:42:39 +0000114 'owner or admin tests. "keystone_default_roles" runs the '
115 'tests using only the keystone default roles. "none" '
116 'disables the RBAC tests.'),
Michael Johnsonfc223fe2019-01-15 16:40:05 -0800117 cfg.DictOpt('enabled_provider_drivers',
Carlos Goncalvesdecfc352019-07-25 19:31:52 +0200118 help=('A comma separated list of dictionaries of the '
119 'enabled provider driver names and descriptions. '
120 'Must match the driver name in the '
Michael Johnsonfc223fe2019-01-15 16:40:05 -0800121 'octavia.api.drivers entrypoint. Example: '
Carlos Goncalvesdecfc352019-07-25 19:31:52 +0200122 'amphora:The Octavia Amphora driver.,'
123 'octavia:Deprecated alias of the Octavia '
Ann Taraday7d0b5822019-10-17 15:28:30 +0400124 'Amphora driver.,'
125 'amphorav2:The Octavia Amphora driver that uses '
126 'taskflow jobboard persistence.'),
Michael Johnsonfc223fe2019-01-15 16:40:05 -0800127 default={'amphora': 'The Octavia Amphora driver.',
Ann Taraday7d0b5822019-10-17 15:28:30 +0400128 'amphorav2': 'The Octavia Amphora driver that uses '
129 'taskflow jobboard persistence.',
Michael Johnsonfc223fe2019-01-15 16:40:05 -0800130 'octavia': 'Deprecated alias of the Octavia Amphora '
131 'driver.'}),
Carlos Goncalvesee09a1b2019-07-22 11:45:04 +0200132 cfg.StrOpt('loadbalancer_topology',
133 default=const.SINGLE,
134 choices=const.SUPPORTED_LB_TOPOLOGIES,
135 help='Load balancer topology configuration.'),
Michael Johnson77df0322019-01-15 18:27:58 -0800136 cfg.DictOpt('expected_flavor_capability',
137 help=('Defines a provider flavor capability that is expected '
138 'to be present in the selected provider under test. '
139 'It is specified in a "name": "description" dict. '
140 'Example: {"loadbalancer_topology": "The load balancer '
141 'topology. One of: SINGLE - One amphora per load '
142 'balancer. ACTIVE_STANDBY - Two amphora per load '
143 'balancer."}'),
144 default={'loadbalancer_topology': 'The load balancer '
145 'topology. One of: SINGLE - One amphora per load '
146 'balancer. ACTIVE_STANDBY - Two amphora per load '
147 'balancer.'}),
Adam Harwellc2aa20c2019-11-20 11:15:07 -0800148 cfg.DictOpt('expected_availability_zone_capability',
149 help=('Defines a provider availability zone capability that '
150 'is expected to be present in the selected provider '
151 'under test. It is specified in a "name": "description" '
152 'dict. Example: {"compute_zone": "The compute '
153 'availability zone."}'),
154 default={'compute_zone': 'The compute availability zone.'}),
Jude Cross986e3f52017-07-24 14:57:20 -0700155 # Networking
156 cfg.BoolOpt('test_with_ipv6',
157 default=True,
158 help='When true the IPv6 tests will be run.'),
159 cfg.BoolOpt('disable_boot_network', default=False,
160 help='True if your cloud does not allow creating networks or '
161 'specifying the boot network for instances.'),
162 cfg.BoolOpt('enable_security_groups', default=False,
163 help='When true, security groups will be created for the test '
164 'servers. When false, port security will be disabled on '
165 'the created networks.'),
166 cfg.StrOpt('test_network_override',
167 help='Overrides network creation and uses this network ID for '
168 'all tests (VIP, members, etc.). Required if '
169 'test_subnet_override is set.'),
170 cfg.StrOpt('test_subnet_override',
171 help='Overrides subnet creation and uses this subnet ID for '
172 'all IPv4 tests (VIP, members, etc.). Optional'),
173 cfg.StrOpt('test_ipv6_subnet_override',
174 help='Overrides subnet creation and uses this subnet ID for '
175 'all IPv6 tests (VIP, members, etc.). Optional and only '
176 'valid if test_network_override is set.'),
177 cfg.StrOpt('vip_subnet_cidr',
178 default='10.1.1.0/24',
179 help='CIDR format subnet to use for the vip subnet.'),
180 cfg.StrOpt('vip_ipv6_subnet_cidr',
181 default='fdde:1a92:7523:70a0::/64',
182 help='CIDR format subnet to use for the IPv6 vip subnet.'),
183 cfg.StrOpt('member_1_ipv4_subnet_cidr',
184 default='10.2.1.0/24',
185 help='CIDR format subnet to use for the member 1 subnet.'),
186 cfg.StrOpt('member_1_ipv6_subnet_cidr',
187 default='fd7b:f9f7:0fff:4eca::/64',
188 help='CIDR format subnet to use for the member 1 ipv6 subnet.'),
189 cfg.StrOpt('member_2_ipv4_subnet_cidr',
190 default='10.2.2.0/24',
191 help='CIDR format subnet to use for the member 2 subnet.'),
192 cfg.StrOpt('member_2_ipv6_subnet_cidr',
193 default='fd77:1457:4cf0:26a8::/64',
194 help='CIDR format subnet to use for the member 1 ipv6 subnet.'),
Gregory Thiemonge54225ad2021-02-04 15:25:17 +0100195 cfg.StrOpt('default_router',
196 default='router1',
197 help='The default router connected to the public network.'),
198 cfg.StrOpt('default_ipv6_subnetpool',
199 default='shared-default-subnetpool-v6',
200 help='The default IPv6 subnetpool to use when creating the '
201 'IPv6 VIP subnet.'),
Carlos Goncalvesc2e12162019-02-14 23:57:44 +0100202 # Amphora specific options
203 cfg.StrOpt('amphora_ssh_user',
204 default='ubuntu',
205 help='The amphora SSH user.'),
206 cfg.StrOpt('amphora_ssh_key',
Carlos Goncalves9891de02019-07-28 13:37:33 +0200207 default='/etc/octavia/.ssh/octavia_ssh_key',
Carlos Goncalvesc2e12162019-02-14 23:57:44 +0100208 help='The amphora SSH key file.'),
Jude Cross986e3f52017-07-24 14:57:20 -0700209 # Environment specific options
Carlos Goncalvesc2e12162019-02-14 23:57:44 +0100210 # These are used to accomodate clouds with specific limitations
Jude Cross986e3f52017-07-24 14:57:20 -0700211 cfg.IntOpt('random_server_name_length',
212 default=0,
213 help='If non-zero, generate a random name of the length '
214 'provided for each server, in the format "m[A-Z0-9]*". '),
215 cfg.StrOpt('availability_zone',
216 default=None,
217 help='Availability zone to use for creating servers.'),
Michael Johnsona1862ff2020-06-21 12:15:27 -0700218 cfg.StrOpt('availability_zone2',
219 default=None,
220 help='A second availability zone to use for creating servers.'),
221 cfg.StrOpt('availability_zone3',
222 default=None,
223 help='A third availability zone to use for creating servers.'),
Maciej Józefczyk6a508ce2019-07-26 13:10:50 +0000224 cfg.BoolOpt('test_reuse_connection', default=True,
225 help='Reuse TCP connections while testing LB with '
226 'HTTP members (keep-alive).'),
Michael Johnsonb1ba3b32019-07-30 20:23:51 -0700227 # Log offloading specific options
228 cfg.StrOpt('tenant_flow_log_file',
229 default='/var/log/octavia-tenant-traffic.log',
230 help='File path, on the tempest system, to the tenant flow '
231 'log file.'),
Michael Johnson7bd2f972019-07-30 21:32:04 -0700232 cfg.StrOpt('amphora_admin_log_file',
233 default='/var/log/octavia-amphora.log',
234 help='File path, on the tempest system, to the amphora admin '
235 'log file.'),
Michael Johnson27357352020-11-13 13:55:09 -0800236 cfg.StrOpt('test_server_path',
237 default='/opt/octavia-tempest-plugin/test_server.bin',
238 help='Filesystem path to the test web server that will be '
239 'installed in the web server VMs.'),
Michael Johnson6006de72021-02-21 01:42:39 +0000240 # RBAC related options
241 # Note: Also see the enforce_scope section (from tempest) for Octavia API
242 # scope checking setting.
243 cfg.BoolOpt('enforce_new_defaults',
244 default=False,
245 help='Does the load-balancer service API policies enforce '
246 'the new keystone default roles? This configuration '
247 'value should be same as octavia.conf: '
Michael Johnson6dac8ff2023-03-09 00:04:37 +0000248 '[oslo_policy].enforce_new_defaults option.',
249 deprecated_for_removal=True,
250 deprecated_reason='Consolidated into the RBAC_test_type '
251 'setting.',
252 deprecated_since='bobcat'),
Jude Cross986e3f52017-07-24 14:57:20 -0700253]
Reedipf88cffc2018-09-03 13:20:08 +0000254
255lb_feature_enabled_group = cfg.OptGroup(name='loadbalancer-feature-enabled',
256 title='Enabled/Disabled LB features')
257LBFeatureEnabledGroup = [
Michael Johnson6fbfed02020-03-19 15:37:31 -0700258 cfg.BoolOpt('not_implemented_is_error',
259 default=True,
260 help="When True, not-implemented responses from the API are "
261 "considered an error and test failure. This should be "
262 "used when a driver should support all of the Octavia "
263 "API features, such as the reference driver."),
Reedipf88cffc2018-09-03 13:20:08 +0000264 cfg.BoolOpt('health_monitor_enabled',
265 default=True,
Carlos Goncalvescc7dbcd2019-03-14 18:48:12 +0100266 help="Whether Health Monitor is available with provider "
267 "driver or not."),
Michael Johnson0a0f9b32019-01-02 16:58:21 -0800268 cfg.BoolOpt('terminated_tls_enabled',
269 default=True,
270 help="Whether TLS termination is available with provider "
271 "driver or not."),
Reedip6626f252018-12-03 07:31:34 +0000272 cfg.BoolOpt('l7_protocol_enabled',
273 default=True,
Carlos Goncalvescc7dbcd2019-03-14 18:48:12 +0100274 help="Whether L7 Protocols are available with the provider "
275 "driver or not."),
276 cfg.BoolOpt('pool_algorithms_enabled',
277 default=True,
278 help="Whether pool algorithms are available with provider"
279 "driver or not."),
Reedip6626f252018-12-03 07:31:34 +0000280 cfg.StrOpt('l4_protocol',
281 default="TCP",
Carlos Goncalvescc7dbcd2019-03-14 18:48:12 +0100282 help="The type of L4 Protocol which is supported with the "
283 "provider driver."),
Gregory Thiemongee037eb82019-09-19 16:22:19 +0200284 cfg.BoolOpt('spare_pool_enabled',
285 default=False,
286 help="Wether spare pool is available with amphora provider "
287 "driver or not."),
Reedip Banerjee2bb585d2019-03-22 08:06:12 +0000288 cfg.BoolOpt('session_persistence_enabled',
289 default=True,
290 help="Whether session persistence is supported with the "
291 "provider driver."),
Michael Johnsonb1ba3b32019-07-30 20:23:51 -0700292 cfg.BoolOpt('log_offload_enabled', default=False,
293 help="Whether the log offload tests will run. These require "
294 "the tempest instance have access to the log files "
295 "specified in the tempest configuration."),
Michael Johnson8646e5a2021-10-02 19:58:34 +0000296 cfg.BoolOpt('prometheus_listener_enabled', default=True,
297 help="Whether the PROMETHEUS listener tests will run."),
Michael Polenchuk58258ce2022-04-04 13:34:43 +0400298 cfg.BoolOpt('force_cleanup_enabled',
299 default=False,
300 help="Whether to delete loadbalancers with force on cleanup."),
Reedipf88cffc2018-09-03 13:20:08 +0000301]
Michael Johnson6006de72021-02-21 01:42:39 +0000302
303# Extending this enforce_scope group defined in tempest
304enforce_scope_group = cfg.OptGroup(name="enforce_scope",
305 title="OpenStack Services with "
306 "enforce scope")
307EnforceScopeGroup = [
308 cfg.BoolOpt('octavia',
309 default=False,
310 help='Does the load-balancer service API policies enforce '
311 'scope? This configuration value should be same as '
312 'octavia.conf: [oslo_policy].enforce_scope option.'),
313]
Ilya Bumarskovcea9b6b2023-03-16 14:12:09 +0400314
315
316def is_tungstenfabric_backend_enabled():
317 """Return True if TungstenFabric is used as a backend."""
318 try:
319 sdn = getattr(config.CONF, 'sdn')
320 return getattr(sdn, 'service_name', None) == 'tungstenfabric'
321 except cfg.NoSuchOptError:
322 return False