blob: 6f39abbd525d5574f52fa1fecf086f779ffb2e02 [file] [log] [blame]
Steve Baker450aa7f2014-08-25 10:37:27 +12001# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
Jens Rosenboom4f069fb2015-02-18 14:19:07 +010013from oslo_config import cfg
Steve Baker450aa7f2014-08-25 10:37:27 +120014
Steve Bakerae90e132016-08-13 09:53:07 +120015CONF = None
Steve Baker21904b52016-08-01 00:36:02 +000016
Steve Baker39ed19e2016-08-01 00:55:34 +000017service_available_group = cfg.OptGroup(name="service_available",
18 title="Available OpenStack Services")
19
20ServiceAvailableGroup = [
rabif89752b2017-11-18 22:14:30 +053021 cfg.BoolOpt("heat_plugin",
Steve Baker39ed19e2016-08-01 00:55:34 +000022 default=True,
23 help="Whether or not heat is expected to be available"),
24]
Steve Baker450aa7f2014-08-25 10:37:27 +120025
rabif89752b2017-11-18 22:14:30 +053026heat_group = cfg.OptGroup(name="heat_plugin",
Steve Bakerdc769c32016-07-27 23:31:50 +000027 title="Heat Service Options")
Steve Baker450aa7f2014-08-25 10:37:27 +120028
Steve Bakerdc769c32016-07-27 23:31:50 +000029HeatGroup = [
30 cfg.StrOpt("catalog_type",
31 default="orchestration",
32 help="Catalog type of the orchestration service."),
Steve Baker450aa7f2014-08-25 10:37:27 +120033 cfg.StrOpt('username',
Rakesh H Sa286a132016-02-18 18:54:00 +053034 help="Username to use for non admin API requests."),
Steve Baker450aa7f2014-08-25 10:37:27 +120035 cfg.StrOpt('password',
Rakesh H Sa286a132016-02-18 18:54:00 +053036 help="Non admin API key to use when authenticating.",
37 secret=True),
38 cfg.StrOpt('admin_username',
39 help="Username to use for admin API requests."),
40 cfg.StrOpt('admin_password',
41 help="Admin API key to use when authentication.",
Steve Baker450aa7f2014-08-25 10:37:27 +120042 secret=True),
rabibe38c302017-04-11 09:54:07 +053043 cfg.StrOpt('project_name',
44 help="Project name to use for API requests.",
rabid2916d02017-09-22 18:19:24 +053045 deprecated_opts=[cfg.DeprecatedOpt(
rabif89752b2017-11-18 22:14:30 +053046 'tenant_name', group='heat_plugin')]),
rabibe38c302017-04-11 09:54:07 +053047 cfg.StrOpt('admin_project_name',
rabifd98a472016-05-24 10:18:33 +053048 default='admin',
rabibe38c302017-04-11 09:54:07 +053049 help="Admin project name to use for admin API requests.",
rabid2916d02017-09-22 18:19:24 +053050 deprecated_opts=[cfg.DeprecatedOpt(
rabif89752b2017-11-18 22:14:30 +053051 'admin_tenant_name', group='heat_plugin')]),
Steve Baker450aa7f2014-08-25 10:37:27 +120052 cfg.StrOpt('auth_url',
rabi8fcf1922017-04-19 09:21:54 +053053 help="Full URI of the OpenStack Identity API (Keystone)."),
54 cfg.StrOpt('auth_version',
55 help="OpenStack Identity API version."),
Rabi Mishra1d538742016-03-21 21:09:20 +053056 cfg.StrOpt('user_domain_name',
Zane Bitter5ea4aa42017-03-01 15:50:19 -050057 help="User domain name, if keystone v3 auth_url "
Rabi Mishra1d538742016-03-21 21:09:20 +053058 "is used"),
59 cfg.StrOpt('project_domain_name',
Zane Bitter5ea4aa42017-03-01 15:50:19 -050060 help="Project domain name, if keystone v3 auth_url "
Rabi Mishra65493fb2016-01-29 22:23:21 +053061 "is used"),
rabi133ee5f2016-12-01 09:54:37 +053062 cfg.StrOpt('user_domain_id',
Zane Bitter5ea4aa42017-03-01 15:50:19 -050063 help="User domain id, if keystone v3 auth_url "
rabi133ee5f2016-12-01 09:54:37 +053064 "is used"),
65 cfg.StrOpt('project_domain_id',
Zane Bitter5ea4aa42017-03-01 15:50:19 -050066 help="Project domain id, if keystone v3 auth_url "
rabi133ee5f2016-12-01 09:54:37 +053067 "is used"),
Steve Baker450aa7f2014-08-25 10:37:27 +120068 cfg.StrOpt('region',
Rabi Mishra65493fb2016-01-29 22:23:21 +053069 help="The region name to use"),
Colleen Murphy30b1fd62017-12-29 12:43:53 +010070 cfg.StrOpt('endpoint_type',
71 default='public',
72 choices=['public', 'admin', 'internal'],
73 help="The endpoint type to use for the orchestration service."),
Steve Baker450aa7f2014-08-25 10:37:27 +120074 cfg.StrOpt('instance_type',
Steve Baker450aa7f2014-08-25 10:37:27 +120075 help="Instance type for tests. Needs to be big enough for a "
76 "full OS plus the test workload"),
Pavlo Shchelokovskyy46e5cb22015-03-23 12:01:25 +000077 cfg.StrOpt('minimal_instance_type',
78 help="Instance type enough for simplest cases."),
Steve Baker450aa7f2014-08-25 10:37:27 +120079 cfg.StrOpt('image_ref',
Steve Baker450aa7f2014-08-25 10:37:27 +120080 help="Name of image to use for tests which boot servers."),
81 cfg.StrOpt('keypair_name',
Steve Baker450aa7f2014-08-25 10:37:27 +120082 help="Name of existing keypair to launch servers with."),
83 cfg.StrOpt('minimal_image_ref',
Steve Baker450aa7f2014-08-25 10:37:27 +120084 help="Name of minimal (e.g cirros) image to use when "
85 "launching test instances."),
Steve Baker450aa7f2014-08-25 10:37:27 +120086 cfg.BoolOpt('disable_ssl_certificate_validation',
87 default=False,
88 help="Set to True if using self-signed SSL certificates."),
tyagi39aa11a2016-03-07 04:47:00 -080089 cfg.StrOpt('ca_file',
tyagi39aa11a2016-03-07 04:47:00 -080090 help="CA certificate to pass for servers that have "
91 "https endpoint."),
Steve Baker450aa7f2014-08-25 10:37:27 +120092 cfg.IntOpt('build_interval',
93 default=4,
94 help="Time in seconds between build status checks."),
95 cfg.IntOpt('build_timeout',
96 default=1200,
97 help="Timeout in seconds to wait for a stack to build."),
98 cfg.StrOpt('network_for_ssh',
Rabi Mishraec4b03b2015-05-23 02:20:47 +053099 default='heat-net',
Steve Baker450aa7f2014-08-25 10:37:27 +1200100 help="Network used for SSH connections."),
101 cfg.StrOpt('fixed_network_name',
Rabi Mishraec4b03b2015-05-23 02:20:47 +0530102 default='heat-net',
Steve Baker450aa7f2014-08-25 10:37:27 +1200103 help="Visible fixed network name "),
Pavlo Shchelokovskyy6fa23802015-03-23 11:22:35 +0000104 cfg.StrOpt('floating_network_name',
105 default='public',
106 help="Visible floating network name "),
Steve Baker0b679bb2015-03-11 13:46:42 +1300107 cfg.StrOpt('boot_config_env',
rabid2916d02017-09-22 18:19:24 +0530108 default=('heat_tempest_plugin/tests/scenario/templates'
Steve Baker803f1502015-03-11 13:47:08 +1300109 '/boot_config_none_env.yaml'),
Steve Baker0b679bb2015-03-11 13:46:42 +1300110 help="Path to environment file which defines the "
111 "resource type Heat::InstallConfigAgent. Needs to "
112 "be appropriate for the image_ref."),
kairat_kushaev0ab3d7c2015-01-27 21:48:46 +0300113 cfg.StrOpt('fixed_subnet_name',
Rabi Mishraec4b03b2015-05-23 02:20:47 +0530114 default='heat-subnet',
kairat_kushaev0ab3d7c2015-01-27 21:48:46 +0300115 help="Visible fixed sub-network name "),
Steve Baker450aa7f2014-08-25 10:37:27 +1200116 cfg.IntOpt('ssh_timeout',
117 default=300,
118 help="Timeout in seconds to wait for authentication to "
119 "succeed."),
120 cfg.IntOpt('ip_version_for_ssh',
121 default=4,
122 help="IP version used for SSH connections."),
123 cfg.IntOpt('ssh_channel_timeout',
124 default=60,
125 help="Timeout in seconds to wait for output from ssh "
126 "channel."),
127 cfg.IntOpt('tenant_network_mask_bits',
128 default=28,
129 help="The mask bits for tenant ipv4 subnets"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530130 cfg.BoolOpt('skip_scenario_tests',
131 default=False,
132 help="Skip all scenario tests"),
133 cfg.BoolOpt('skip_functional_tests',
134 default=False,
135 help="Skip all functional tests"),
136 cfg.ListOpt('skip_functional_test_list',
Rabi Mishra94c43722015-08-12 18:39:38 +0530137 help="List of functional test class or class.method "
Zane Bitter5ea4aa42017-03-01 15:50:19 -0500138 "names to skip ex. AutoscalingGroupTest, "
Rabi Mishra94c43722015-08-12 18:39:38 +0530139 "InstanceGroupBasicTest.test_size_updates_work"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530140 cfg.ListOpt('skip_scenario_test_list',
Rabi Mishra94c43722015-08-12 18:39:38 +0530141 help="List of scenario test class or class.method "
142 "names to skip ex. NeutronLoadBalancerTest, "
huangtianhua422c1ba2016-06-08 15:50:39 +0800143 "AodhAlarmTest.test_alarm"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530144 cfg.ListOpt('skip_test_stack_action_list',
145 help="List of stack actions in tests to skip "
146 "ex. ABANDON, ADOPT, SUSPEND, RESUME"),
Zane Bitterf407e102017-10-05 14:19:32 -0400147 cfg.BoolOpt('convergence_engine_enabled',
148 default=True,
149 help="Test features that are only present for stacks with "
150 "convergence enabled."),
Steve Baker450aa7f2014-08-25 10:37:27 +1200151 cfg.IntOpt('volume_size',
152 default=1,
153 help='Default size in GB for volumes created by volumes tests'),
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400154 cfg.IntOpt('connectivity_timeout',
155 default=120,
156 help="Timeout in seconds to wait for connectivity to "
157 "server."),
Oleksii Chuprykov4be023a2015-07-08 07:17:08 -0400158 cfg.IntOpt('sighup_timeout',
rabicfffc832016-07-28 12:15:32 +0530159 default=120,
Zane Bitter5ea4aa42017-03-01 15:50:19 -0500160 help="Timeout in seconds to wait for adding or removing child "
Thomas Herve2ce4bda2016-01-22 17:55:55 +0100161 "process after receiving of sighup signal"),
Peter Razumovsky483e64b2016-03-04 17:04:28 +0300162 cfg.IntOpt('sighup_config_edit_retries',
163 default=10,
164 help='Count of retries to edit config file during sighup. If '
165 'another worker already edit config file, file can be '
166 'busy, so need to wait and try edit file again.'),
huangtianhua2026ac12017-01-10 14:18:43 +0800167 cfg.StrOpt('heat_config_notify_script',
Thomas Herve2ce4bda2016-01-22 17:55:55 +0100168 default=('heat-config-notify'),
169 help="Path to the script heat-config-notify"),
Rabi Mishra65493fb2016-01-29 22:23:21 +0530170
Steve Baker450aa7f2014-08-25 10:37:27 +1200171]
172
173
Thomas Hervecd3622e2014-12-17 10:36:51 +0100174def list_opts():
Steve Bakerdc769c32016-07-27 23:31:50 +0000175 yield heat_group.name, HeatGroup
Steve Baker39ed19e2016-08-01 00:55:34 +0000176 yield service_available_group.name, ServiceAvailableGroup