Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 1 | # 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 | |
| 16 | from oslo_config import cfg |
Michael Johnson | 0a0f9b3 | 2019-01-02 16:58:21 -0800 | [diff] [blame] | 17 | from oslo_log import log as logging |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 18 | |
| 19 | from octavia_tempest_plugin.common import constants as const |
| 20 | |
Michael Johnson | 0a0f9b3 | 2019-01-02 16:58:21 -0800 | [diff] [blame] | 21 | |
| 22 | LOG = logging.getLogger(__name__) |
| 23 | |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 24 | service_available_group = cfg.OptGroup(name='service_available', |
| 25 | title='Available OpenStack Services') |
| 26 | |
| 27 | ServiceAvailableGroup = [ |
| 28 | cfg.BoolOpt('load_balancer', |
| 29 | default=True, |
| 30 | help="Whether or not the load-balancer service is expected " |
| 31 | "to be available."), |
| 32 | ] |
| 33 | |
| 34 | octavia_group = cfg.OptGroup(name='load_balancer', |
| 35 | title='load-balancer service options') |
| 36 | |
| 37 | OctaviaGroup = [ |
| 38 | # Tempest plugin common options |
| 39 | cfg.StrOpt("region", |
| 40 | default="", |
| 41 | help="The region name to use. If empty, the value " |
| 42 | "of identity.region is used instead. If no such region " |
| 43 | "is found in the service catalog, the first found one is " |
| 44 | "used."), |
| 45 | cfg.StrOpt('catalog_type', |
| 46 | default='load-balancer', |
| 47 | help='Catalog type of the Octavia service.'), |
| 48 | cfg.StrOpt('endpoint_type', |
| 49 | default='publicURL', |
| 50 | choices=['public', 'admin', 'internal', |
| 51 | 'publicURL', 'adminURL', 'internalURL'], |
| 52 | help="The endpoint type to use for the load-balancer service"), |
Michael Johnson | 6a9236a | 2020-08-04 23:54:54 +0000 | [diff] [blame] | 53 | cfg.FloatOpt('build_interval', |
| 54 | default=5, |
| 55 | help='Time in seconds between build status checks for ' |
| 56 | 'non-load-balancer resources to build'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 57 | cfg.IntOpt('build_timeout', |
Jacky Hu | 2b95f2f | 2018-09-30 09:12:25 +0800 | [diff] [blame] | 58 | default=300, |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 59 | help='Timeout in seconds to wait for non-load-balancer ' |
| 60 | 'resources to build'), |
Michael Johnson | 0a0f9b3 | 2019-01-02 16:58:21 -0800 | [diff] [blame] | 61 | cfg.StrOpt('octavia_svc_username', default='admin', |
| 62 | help='The service_auth username the Octavia services are using' |
| 63 | 'to access other OpenStack services.'), |
Bas de Bruijne | 530a88a | 2022-12-15 11:12:45 -0400 | [diff] [blame] | 64 | cfg.BoolOpt('log_user_roles', |
| 65 | default=True, |
| 66 | help='Log the user roles at the start of every test.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 67 | # load-balancer specific options |
Michael Johnson | 6a9236a | 2020-08-04 23:54:54 +0000 | [diff] [blame] | 68 | cfg.FloatOpt('check_interval', |
| 69 | default=5, |
| 70 | help='Interval to check for status changes.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 71 | cfg.IntOpt('check_timeout', |
Michael Johnson | 6d99fc6 | 2018-07-22 16:04:48 -0700 | [diff] [blame] | 72 | default=120, |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 73 | help='Timeout, in seconds, to wait for a status change.'), |
| 74 | cfg.BoolOpt('test_with_noop', |
| 75 | default=False, |
| 76 | help='Runs the tests assuming no-op drivers are being used. ' |
| 77 | 'Tests will assume no actual amphora are created.'), |
Michael Johnson | 6a9236a | 2020-08-04 23:54:54 +0000 | [diff] [blame] | 78 | cfg.FloatOpt('lb_build_interval', |
| 79 | default=10, |
| 80 | help='Time in seconds between build status checks for a ' |
| 81 | 'load balancer.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 82 | cfg.IntOpt('lb_build_timeout', |
| 83 | default=900, |
| 84 | help='Timeout in seconds to wait for a ' |
| 85 | 'load balancer to build.'), |
| 86 | cfg.StrOpt('member_role', |
| 87 | default='load-balancer_member', |
| 88 | help='The load balancing member RBAC role.'), |
| 89 | cfg.StrOpt('admin_role', |
| 90 | default='load-balancer_admin', |
| 91 | help='The load balancing admin RBAC role.'), |
Michael Johnson | 6006de7 | 2021-02-21 01:42:39 +0000 | [diff] [blame] | 92 | cfg.StrOpt('observer_role', |
| 93 | default='load-balancer_observer', |
| 94 | help='The load balancing observer RBAC role.'), |
| 95 | cfg.StrOpt('global_observer_role', |
| 96 | default='load-balancer_global_observer', |
| 97 | help='The load balancing global observer RBAC role.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 98 | cfg.IntOpt('scp_connection_timeout', |
| 99 | default=5, |
| 100 | help='Timeout in seconds to wait for a ' |
| 101 | 'scp connection to complete.'), |
| 102 | cfg.IntOpt('scp_connection_attempts', |
| 103 | default=20, |
| 104 | help='Retries for scp to attempt to connect.'), |
| 105 | cfg.StrOpt('provider', |
| 106 | default='octavia', |
| 107 | help='The provider driver to use for the tests.'), |
| 108 | cfg.StrOpt('RBAC_test_type', default=const.ADVANCED, |
Michael Johnson | 6006de7 | 2021-02-21 01:42:39 +0000 | [diff] [blame] | 109 | choices=[const.ADVANCED, const.KEYSTONE_DEFAULT_ROLES, |
| 110 | const.OWNERADMIN, const.NONE], |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 111 | help='Type of RBAC tests to run. "advanced" runs the octavia ' |
| 112 | 'default RBAC tests. "owner_or_admin" runs the legacy ' |
Michael Johnson | 6006de7 | 2021-02-21 01:42:39 +0000 | [diff] [blame] | 113 | 'owner or admin tests. "keystone_default_roles" runs the ' |
| 114 | 'tests using only the keystone default roles. "none" ' |
| 115 | 'disables the RBAC tests.'), |
Michael Johnson | fc223fe | 2019-01-15 16:40:05 -0800 | [diff] [blame] | 116 | cfg.DictOpt('enabled_provider_drivers', |
Carlos Goncalves | decfc35 | 2019-07-25 19:31:52 +0200 | [diff] [blame] | 117 | help=('A comma separated list of dictionaries of the ' |
| 118 | 'enabled provider driver names and descriptions. ' |
| 119 | 'Must match the driver name in the ' |
Michael Johnson | fc223fe | 2019-01-15 16:40:05 -0800 | [diff] [blame] | 120 | 'octavia.api.drivers entrypoint. Example: ' |
Carlos Goncalves | decfc35 | 2019-07-25 19:31:52 +0200 | [diff] [blame] | 121 | 'amphora:The Octavia Amphora driver.,' |
| 122 | 'octavia:Deprecated alias of the Octavia ' |
Ann Taraday | 7d0b582 | 2019-10-17 15:28:30 +0400 | [diff] [blame] | 123 | 'Amphora driver.,' |
| 124 | 'amphorav2:The Octavia Amphora driver that uses ' |
| 125 | 'taskflow jobboard persistence.'), |
Michael Johnson | fc223fe | 2019-01-15 16:40:05 -0800 | [diff] [blame] | 126 | default={'amphora': 'The Octavia Amphora driver.', |
Ann Taraday | 7d0b582 | 2019-10-17 15:28:30 +0400 | [diff] [blame] | 127 | 'amphorav2': 'The Octavia Amphora driver that uses ' |
| 128 | 'taskflow jobboard persistence.', |
Michael Johnson | fc223fe | 2019-01-15 16:40:05 -0800 | [diff] [blame] | 129 | 'octavia': 'Deprecated alias of the Octavia Amphora ' |
| 130 | 'driver.'}), |
Carlos Goncalves | ee09a1b | 2019-07-22 11:45:04 +0200 | [diff] [blame] | 131 | cfg.StrOpt('loadbalancer_topology', |
| 132 | default=const.SINGLE, |
| 133 | choices=const.SUPPORTED_LB_TOPOLOGIES, |
| 134 | help='Load balancer topology configuration.'), |
Michael Johnson | 77df032 | 2019-01-15 18:27:58 -0800 | [diff] [blame] | 135 | cfg.DictOpt('expected_flavor_capability', |
| 136 | help=('Defines a provider flavor capability that is expected ' |
| 137 | 'to be present in the selected provider under test. ' |
| 138 | 'It is specified in a "name": "description" dict. ' |
| 139 | 'Example: {"loadbalancer_topology": "The load balancer ' |
| 140 | 'topology. One of: SINGLE - One amphora per load ' |
| 141 | 'balancer. ACTIVE_STANDBY - Two amphora per load ' |
| 142 | 'balancer."}'), |
| 143 | default={'loadbalancer_topology': 'The load balancer ' |
| 144 | 'topology. One of: SINGLE - One amphora per load ' |
| 145 | 'balancer. ACTIVE_STANDBY - Two amphora per load ' |
| 146 | 'balancer.'}), |
Adam Harwell | c2aa20c | 2019-11-20 11:15:07 -0800 | [diff] [blame] | 147 | cfg.DictOpt('expected_availability_zone_capability', |
| 148 | help=('Defines a provider availability zone capability that ' |
| 149 | 'is expected to be present in the selected provider ' |
| 150 | 'under test. It is specified in a "name": "description" ' |
| 151 | 'dict. Example: {"compute_zone": "The compute ' |
| 152 | 'availability zone."}'), |
| 153 | default={'compute_zone': 'The compute availability zone.'}), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 154 | # Networking |
| 155 | cfg.BoolOpt('test_with_ipv6', |
| 156 | default=True, |
| 157 | help='When true the IPv6 tests will be run.'), |
| 158 | cfg.BoolOpt('disable_boot_network', default=False, |
| 159 | help='True if your cloud does not allow creating networks or ' |
| 160 | 'specifying the boot network for instances.'), |
| 161 | cfg.BoolOpt('enable_security_groups', default=False, |
| 162 | help='When true, security groups will be created for the test ' |
| 163 | 'servers. When false, port security will be disabled on ' |
| 164 | 'the created networks.'), |
| 165 | cfg.StrOpt('test_network_override', |
| 166 | help='Overrides network creation and uses this network ID for ' |
| 167 | 'all tests (VIP, members, etc.). Required if ' |
| 168 | 'test_subnet_override is set.'), |
| 169 | cfg.StrOpt('test_subnet_override', |
| 170 | help='Overrides subnet creation and uses this subnet ID for ' |
| 171 | 'all IPv4 tests (VIP, members, etc.). Optional'), |
| 172 | cfg.StrOpt('test_ipv6_subnet_override', |
| 173 | help='Overrides subnet creation and uses this subnet ID for ' |
| 174 | 'all IPv6 tests (VIP, members, etc.). Optional and only ' |
| 175 | 'valid if test_network_override is set.'), |
| 176 | cfg.StrOpt('vip_subnet_cidr', |
| 177 | default='10.1.1.0/24', |
| 178 | help='CIDR format subnet to use for the vip subnet.'), |
| 179 | cfg.StrOpt('vip_ipv6_subnet_cidr', |
| 180 | default='fdde:1a92:7523:70a0::/64', |
| 181 | help='CIDR format subnet to use for the IPv6 vip subnet.'), |
| 182 | cfg.StrOpt('member_1_ipv4_subnet_cidr', |
| 183 | default='10.2.1.0/24', |
| 184 | help='CIDR format subnet to use for the member 1 subnet.'), |
| 185 | cfg.StrOpt('member_1_ipv6_subnet_cidr', |
| 186 | default='fd7b:f9f7:0fff:4eca::/64', |
| 187 | help='CIDR format subnet to use for the member 1 ipv6 subnet.'), |
| 188 | cfg.StrOpt('member_2_ipv4_subnet_cidr', |
| 189 | default='10.2.2.0/24', |
| 190 | help='CIDR format subnet to use for the member 2 subnet.'), |
| 191 | cfg.StrOpt('member_2_ipv6_subnet_cidr', |
| 192 | default='fd77:1457:4cf0:26a8::/64', |
| 193 | help='CIDR format subnet to use for the member 1 ipv6 subnet.'), |
Gregory Thiemonge | 54225ad | 2021-02-04 15:25:17 +0100 | [diff] [blame] | 194 | cfg.StrOpt('default_router', |
| 195 | default='router1', |
| 196 | help='The default router connected to the public network.'), |
| 197 | cfg.StrOpt('default_ipv6_subnetpool', |
| 198 | default='shared-default-subnetpool-v6', |
| 199 | help='The default IPv6 subnetpool to use when creating the ' |
| 200 | 'IPv6 VIP subnet.'), |
Carlos Goncalves | c2e1216 | 2019-02-14 23:57:44 +0100 | [diff] [blame] | 201 | # Amphora specific options |
| 202 | cfg.StrOpt('amphora_ssh_user', |
| 203 | default='ubuntu', |
| 204 | help='The amphora SSH user.'), |
| 205 | cfg.StrOpt('amphora_ssh_key', |
Carlos Goncalves | 9891de0 | 2019-07-28 13:37:33 +0200 | [diff] [blame] | 206 | default='/etc/octavia/.ssh/octavia_ssh_key', |
Carlos Goncalves | c2e1216 | 2019-02-14 23:57:44 +0100 | [diff] [blame] | 207 | help='The amphora SSH key file.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 208 | # Environment specific options |
Carlos Goncalves | c2e1216 | 2019-02-14 23:57:44 +0100 | [diff] [blame] | 209 | # These are used to accomodate clouds with specific limitations |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 210 | cfg.IntOpt('random_server_name_length', |
| 211 | default=0, |
| 212 | help='If non-zero, generate a random name of the length ' |
| 213 | 'provided for each server, in the format "m[A-Z0-9]*". '), |
| 214 | cfg.StrOpt('availability_zone', |
| 215 | default=None, |
| 216 | help='Availability zone to use for creating servers.'), |
Michael Johnson | a1862ff | 2020-06-21 12:15:27 -0700 | [diff] [blame] | 217 | cfg.StrOpt('availability_zone2', |
| 218 | default=None, |
| 219 | help='A second availability zone to use for creating servers.'), |
| 220 | cfg.StrOpt('availability_zone3', |
| 221 | default=None, |
| 222 | help='A third availability zone to use for creating servers.'), |
Maciej Józefczyk | 6a508ce | 2019-07-26 13:10:50 +0000 | [diff] [blame] | 223 | cfg.BoolOpt('test_reuse_connection', default=True, |
| 224 | help='Reuse TCP connections while testing LB with ' |
| 225 | 'HTTP members (keep-alive).'), |
Michael Johnson | b1ba3b3 | 2019-07-30 20:23:51 -0700 | [diff] [blame] | 226 | # Log offloading specific options |
| 227 | cfg.StrOpt('tenant_flow_log_file', |
| 228 | default='/var/log/octavia-tenant-traffic.log', |
| 229 | help='File path, on the tempest system, to the tenant flow ' |
| 230 | 'log file.'), |
Michael Johnson | 7bd2f97 | 2019-07-30 21:32:04 -0700 | [diff] [blame] | 231 | cfg.StrOpt('amphora_admin_log_file', |
| 232 | default='/var/log/octavia-amphora.log', |
| 233 | help='File path, on the tempest system, to the amphora admin ' |
| 234 | 'log file.'), |
Michael Johnson | 2735735 | 2020-11-13 13:55:09 -0800 | [diff] [blame] | 235 | cfg.StrOpt('test_server_path', |
| 236 | default='/opt/octavia-tempest-plugin/test_server.bin', |
| 237 | help='Filesystem path to the test web server that will be ' |
| 238 | 'installed in the web server VMs.'), |
Michael Johnson | 6006de7 | 2021-02-21 01:42:39 +0000 | [diff] [blame] | 239 | # RBAC related options |
| 240 | # Note: Also see the enforce_scope section (from tempest) for Octavia API |
| 241 | # scope checking setting. |
| 242 | cfg.BoolOpt('enforce_new_defaults', |
| 243 | default=False, |
| 244 | help='Does the load-balancer service API policies enforce ' |
| 245 | 'the new keystone default roles? This configuration ' |
| 246 | 'value should be same as octavia.conf: ' |
| 247 | '[oslo_policy].enforce_new_defaults option.'), |
Jude Cross | 986e3f5 | 2017-07-24 14:57:20 -0700 | [diff] [blame] | 248 | ] |
Reedip | f88cffc | 2018-09-03 13:20:08 +0000 | [diff] [blame] | 249 | |
| 250 | lb_feature_enabled_group = cfg.OptGroup(name='loadbalancer-feature-enabled', |
| 251 | title='Enabled/Disabled LB features') |
| 252 | LBFeatureEnabledGroup = [ |
Michael Johnson | 6fbfed0 | 2020-03-19 15:37:31 -0700 | [diff] [blame] | 253 | cfg.BoolOpt('not_implemented_is_error', |
| 254 | default=True, |
| 255 | help="When True, not-implemented responses from the API are " |
| 256 | "considered an error and test failure. This should be " |
| 257 | "used when a driver should support all of the Octavia " |
| 258 | "API features, such as the reference driver."), |
Reedip | f88cffc | 2018-09-03 13:20:08 +0000 | [diff] [blame] | 259 | cfg.BoolOpt('health_monitor_enabled', |
| 260 | default=True, |
Carlos Goncalves | cc7dbcd | 2019-03-14 18:48:12 +0100 | [diff] [blame] | 261 | help="Whether Health Monitor is available with provider " |
| 262 | "driver or not."), |
Michael Johnson | 0a0f9b3 | 2019-01-02 16:58:21 -0800 | [diff] [blame] | 263 | cfg.BoolOpt('terminated_tls_enabled', |
| 264 | default=True, |
| 265 | help="Whether TLS termination is available with provider " |
| 266 | "driver or not."), |
Reedip | 6626f25 | 2018-12-03 07:31:34 +0000 | [diff] [blame] | 267 | cfg.BoolOpt('l7_protocol_enabled', |
| 268 | default=True, |
Carlos Goncalves | cc7dbcd | 2019-03-14 18:48:12 +0100 | [diff] [blame] | 269 | help="Whether L7 Protocols are available with the provider " |
| 270 | "driver or not."), |
| 271 | cfg.BoolOpt('pool_algorithms_enabled', |
| 272 | default=True, |
| 273 | help="Whether pool algorithms are available with provider" |
| 274 | "driver or not."), |
Reedip | 6626f25 | 2018-12-03 07:31:34 +0000 | [diff] [blame] | 275 | cfg.StrOpt('l4_protocol', |
| 276 | default="TCP", |
Carlos Goncalves | cc7dbcd | 2019-03-14 18:48:12 +0100 | [diff] [blame] | 277 | help="The type of L4 Protocol which is supported with the " |
| 278 | "provider driver."), |
Gregory Thiemonge | e037eb8 | 2019-09-19 16:22:19 +0200 | [diff] [blame] | 279 | cfg.BoolOpt('spare_pool_enabled', |
| 280 | default=False, |
| 281 | help="Wether spare pool is available with amphora provider " |
| 282 | "driver or not."), |
Reedip Banerjee | 2bb585d | 2019-03-22 08:06:12 +0000 | [diff] [blame] | 283 | cfg.BoolOpt('session_persistence_enabled', |
| 284 | default=True, |
| 285 | help="Whether session persistence is supported with the " |
| 286 | "provider driver."), |
Michael Johnson | b1ba3b3 | 2019-07-30 20:23:51 -0700 | [diff] [blame] | 287 | cfg.BoolOpt('log_offload_enabled', default=False, |
| 288 | help="Whether the log offload tests will run. These require " |
| 289 | "the tempest instance have access to the log files " |
| 290 | "specified in the tempest configuration."), |
Michael Johnson | 8646e5a | 2021-10-02 19:58:34 +0000 | [diff] [blame] | 291 | cfg.BoolOpt('prometheus_listener_enabled', default=True, |
| 292 | help="Whether the PROMETHEUS listener tests will run."), |
Reedip | f88cffc | 2018-09-03 13:20:08 +0000 | [diff] [blame] | 293 | ] |
Michael Johnson | 6006de7 | 2021-02-21 01:42:39 +0000 | [diff] [blame] | 294 | |
| 295 | # Extending this enforce_scope group defined in tempest |
| 296 | enforce_scope_group = cfg.OptGroup(name="enforce_scope", |
| 297 | title="OpenStack Services with " |
| 298 | "enforce scope") |
| 299 | EnforceScopeGroup = [ |
| 300 | cfg.BoolOpt('octavia', |
| 301 | default=False, |
| 302 | help='Does the load-balancer service API policies enforce ' |
| 303 | 'scope? This configuration value should be same as ' |
| 304 | 'octavia.conf: [oslo_policy].enforce_scope option.'), |
| 305 | ] |