summaryrefslogtreecommitdiff
path: root/install-files/openstack/etc/tempest/tempest.conf
blob: 05f0eca108d85d51e84bca5b456ae319fddf531f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
[DEFAULT]

#
# From tempest.config
#

# Whether to disable inter-process locks (boolean value)
#disable_process_locking = false

# Directory to use for lock files. (string value)
lock_path = /run/lock

#
# From tempest.config
#

# Print debugging output (set logging level to DEBUG instead of
# default WARNING level). (boolean value)
#debug = false

# Print more verbose output (set logging level to INFO instead of
# default WARNING level). (boolean value)
#verbose = false

#
# From tempest.config
#

# The name of a logging configuration file. This file is appended to
# any existing logging configuration files. For details about logging
# configuration files, see the Python logging module documentation.
# (string value)
# Deprecated group/name - [DEFAULT]/log_config
#log_config_append = <None>

# Format string for %%(asctime)s in log records. Default: %(default)s
# . (string value)
#log_date_format = %Y-%m-%d %H:%M:%S

# (Optional) The base directory used for relative --log-file paths.
# (string value)
# Deprecated group/name - [DEFAULT]/logdir
#log_dir = <None>

# (Optional) Name of log file to output to. If no default is set,
# logging will go to stdout. (string value)
# Deprecated group/name - [DEFAULT]/logfile
#log_file = <None>

# DEPRECATED. A logging.Formatter log message format string which may
# use any of the available logging.LogRecord attributes. This option
# is deprecated.  Please use logging_context_format_string and
# logging_default_format_string instead. (string value)
#log_format = <None>

# Syslog facility to receive log lines. (string value)
#syslog_log_facility = LOG_USER

# Use syslog for logging. Existing syslog format is DEPRECATED during
# I, and will change in J to honor RFC5424. (boolean value)
use_syslog = true

# (Optional) Enables or disables syslog rfc5424 format for logging. If
# enabled, prefixes the MSG part of the syslog message with APP-NAME
# (RFC5424). The format without the APP-NAME is deprecated in I, and
# will be removed in J. (boolean value)
#use_syslog_rfc_format = false

#
# From tempest.config
#

# Log output to standard error. (boolean value)
#use_stderr = true

#
# From tempest.config
#

# List of logger=LEVEL pairs. (list value)
#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN

# Enables or disables fatal status of deprecations. (boolean value)
#fatal_deprecations = false

# The format for an instance that is passed with the log message.
# (string value)
#instance_format = "[instance: %(uuid)s] "

# The format for an instance UUID that is passed with the log message.
# (string value)
#instance_uuid_format = "[instance: %(uuid)s] "

# Format string to use for log messages with context. (string value)
#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s

# Data to append to log format when level is DEBUG. (string value)
#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d

# Format string to use for log messages without context. (string
# value)
#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s

# Prefix each line of exception output with this format. (string
# value)
#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s

# Enables or disables publication of error events. (boolean value)
#publish_errors = false


[auth]

#
# From tempest.config
#

# Allows test cases to create/destroy tenants and users. This option
# requires that OpenStack Identity API admin credentials are known. If
# false, isolated test cases and parallel execution, can still be
# achieved configuring a list of test accounts (boolean value)
# Deprecated group/name - [compute]/allow_tenant_isolation
# Deprecated group/name - [orchestration]/allow_tenant_isolation
allow_tenant_isolation = true

# If set to True it enables the Accounts provider, which locks
# credentials to allow for parallel execution with pre-provisioned
# accounts. It can only be used to run tests that ensure credentials
# cleanup happens. It requires at least `2 * CONC` distinct accounts
# configured in `test_accounts_file`, with CONC == the number of
# concurrent test processes. (boolean value)
#locking_credentials_provider = false

# Path to the yaml file that contains the list of credentials to use
# for running tests (string value)
#test_accounts_file = etc/accounts.yaml


[baremetal]

#
# From tempest.config
#

# Timeout for Ironic node to completely provision (integer value)
#active_timeout = 300

# Timeout for association of Nova instance and Ironic node (integer
# value)
#association_timeout = 30

# Catalog type of the baremetal provisioning service (string value)
#catalog_type = baremetal

# Driver name which Ironic uses (string value)
#driver = fake

# Whether the Ironic nova-compute driver is enabled (boolean value)
#driver_enabled = false

# The endpoint type to use for the baremetal provisioning service
# (string value)
#endpoint_type = publicURL

# Timeout for Ironic power transitions. (integer value)
#power_timeout = 60

# Timeout for unprovisioning an Ironic node. (integer value)
#unprovision_timeout = 60


[boto]

#
# From tempest.config
#

# AKI Kernel Image manifest (string value)
#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml

# AMI Machine Image manifest (string value)
#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml

# ARI Ramdisk Image manifest (string value)
#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml

# AWS Access Key (string value)
#aws_access = <None>

# AWS Secret Key (string value)
#aws_secret = <None>

# AWS Zone for EC2 tests (string value)
#aws_zone = nova

# Status Change Test Interval (integer value)
#build_interval = 1

# Status Change Timeout (integer value)
#build_timeout = 60

# EC2 URL (string value)
#ec2_url = http://localhost:8773/services/Cloud

# boto Http socket timeout (integer value)
#http_socket_timeout = 3

# Instance type (string value)
#instance_type = m1.tiny

# boto num_retries on error (integer value)
#num_retries = 1

# S3 Materials Path (string value)
#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0

# S3 URL (string value)
#s3_url = http://localhost:8080


[cli]

#
# From tempest.config
#

# directory where python client binaries are located (string value)
cli_dir = /usr/bin

# enable cli tests (boolean value)
#enabled = true

# Whether the tempest run location has access to the *-manage
# commands. In a pure blackbox environment it will not. (boolean
# value)
#has_manage = true

# Number of seconds to wait on a CLI timeout (integer value)
#timeout = 15


[compute]

#
# From tempest.config
#

# Time in seconds between build status checks. (integer value)
#build_interval = 1

# Timeout in seconds to wait for an instance to build. (integer value)
#build_timeout = 300

# Catalog type of the Compute service. (string value)
#catalog_type = compute

# Catalog type of the Compute v3 service. (string value)
#catalog_v3_type = computev3

# The endpoint type to use for the compute service. (string value)
#endpoint_type = publicURL

# Visible fixed network name  (string value)
#fixed_network_name = private

# Valid primary flavor to use in tests. (string value)
#flavor_ref = 1

# Valid secondary flavor to be used in tests. (string value)
#flavor_ref_alt = 2

# Unallocated floating IP range, which will be used to test the
# floating IP bulk feature for CRUD operation. (string value)
#floating_ip_range = 10.0.0.0/29

# Password used to authenticate to an instance using the alternate
# image. (string value)
#image_alt_ssh_password = password

# User name used to authenticate to an instance using the alternate
# image. (string value)
#image_alt_ssh_user = root

# Valid primary image reference to be used in tests. This is a
# required option (string value)
#image_ref = <None>

# Valid secondary image reference to be used in tests. This is a
# required option, but if only one image is available duplicate the
# value of image_ref above (string value)
#image_ref_alt = <None>

# Password used to authenticate to an instance. (string value)
#image_ssh_password = password

# User name used to authenticate to an instance. (string value)
#image_ssh_user = root

# IP version used for SSH connections. (integer value)
#ip_version_for_ssh = 4

# Network used for SSH connections. (string value)
#network_for_ssh = public

# Path to a private key file for SSH access to remote hosts (string
# value)
#path_to_private_key = <None>

# Timeout in seconds to wait for ping to succeed. (integer value)
#ping_timeout = 120

# Additional wait time for clean state, when there is no OS-EXT-STS
# extension available (integer value)
#ready_wait = 0

# The compute region name to use. If empty, the value of
# identity.region is used instead. If no such region is found in the
# service catalog, the first found one is used. (string value)
#region =

# Should the tests ssh to instances? (boolean value)
#run_ssh = false

# Time in seconds before a shelved instance is eligible for removing
# from a host.  -1 never offload, 0 offload when shelved. This time
# should be the same as the time of nova.conf, and some tests will run
# for as long as the time. (integer value)
#shelved_offload_time = 0

# Auth method used for authenticate to the instance. Valid choices
# are: keypair, configured, adminpass. keypair: start the servers with
# an ssh keypair. configured: use the configured user and password.
# adminpass: use the injected adminPass. disabled: avoid using ssh
# when it is an option. (string value)
#ssh_auth_method = keypair

# Timeout in seconds to wait for output from ssh channel. (integer
# value)
#ssh_channel_timeout = 60

# How to connect to the instance? fixed: using the first ip belongs
# the fixed network floating: creating and using a floating ip (string
# value)
#ssh_connect_method = fixed

# Timeout in seconds to wait for authentication to succeed. (integer
# value)
#ssh_timeout = 300

# User name used to authenticate to an instance. (string value)
#ssh_user = root

# Does SSH use Floating IPs? (boolean value)
#use_floatingip_for_ssh = true

# Expected device name when a volume is attached to an instance
# (string value)
#volume_device_name = vdb


[compute-admin]

#
# From tempest.config
#

# Domain name for authentication as admin (Keystone V3).The same
# domain applies to user and project (string value)
#domain_name = <None>

# API key to use when authenticating as admin. (string value)
password = {{ NOVA_SERVICE_PASSWORD }}

# Administrative Tenant name to use for Nova API requests. (string
# value)
tenant_name = service

# Administrative Username to use for Nova API requests. (string value)
username = {{ NOVA_SERVICE_USER }}


[compute-feature-enabled]

#
# From tempest.config
#

# A list of enabled compute extensions with a special entry all which
# indicates every extension is enabled. Each extension should be
# specified with alias name. Empty list indicates all extensions are
# disabled (list value)
#api_extensions = all

# If false, skip all nova v3 tests. (boolean value)
api_v3 = false

# A list of enabled v3 extensions with a special entry all which
# indicates every extension is enabled. Each extension should be
# specified with alias name. Empty list indicates all extensions are
# disabled (list value)
#api_v3_extensions = all

# Does the test environment block migration support cinder iSCSI
# volumes (boolean value)
#block_migrate_cinder_iscsi = false

# Does the test environment use block devices for live migration
# (boolean value)
#block_migration_for_live_migration = false

# Does the test environment support changing the admin password?
# (boolean value)
#change_password = false

# Does the test environment support obtaining instance serial console
# output? (boolean value)
#console_output = true

# If false, skip disk config tests (boolean value)
#disk_config = true

# Enables returning of the instance password by the relevant server
# API calls such as create, rebuild or rescue. (boolean value)
#enable_instance_password = true

# Does the test environment support dynamic network interface
# attachment? (boolean value)
#interface_attach = true

# Does the test environment support live migration available? (boolean
# value)
#live_migration = false

# Does the test environment support pausing? (boolean value)
#pause = true

# Enable RDP console. This configuration value should be same as
# [nova.rdp]->enabled in nova.conf (boolean value)
#rdp_console = false

# Does the test environment support instance rescue mode? (boolean
# value)
#rescue = true

# Does the test environment support resizing? (boolean value)
#resize = false

# Does the test environment support shelving/unshelving? (boolean
# value)
#shelve = true

# Does the test environment support creating snapshot images of
# running instances? (boolean value)
snapshot = true

# Enable Spice console. This configuration value should be same as
# [nova.spice]->enabled in nova.conf (boolean value)
spice_console = false

# Does the test environment support suspend/resume? (boolean value)
#suspend = true

# Enable VNC console. This configuration value should be same as
# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
vnc_console = true

# If false skip all v2 api tests with xml (boolean value)
#xml_api_v2 = true


[dashboard]

#
# From tempest.config
#

# Where the dashboard can be found (string value)
dashboard_url = http://{{ CONTROLLER_HOST_ADDRESS }}/horizon

# Login page for the dashboard (string value)
login_url = http://{{ CONTROLLER_HOST_ADDRESS }}/horizon/auth/login/


[data_processing]

#
# From tempest.config
#

# Catalog type of the data processing service. (string value)
#catalog_type = data_processing

# The endpoint type to use for the data processing service. (string
# value)
#endpoint_type = publicURL


[database]

#
# From tempest.config
#

# Catalog type of the Database service. (string value)
#catalog_type = database

# Current database version to use in database tests. (string value)
#db_current_version = v1.0

# Valid primary flavor to use in database tests. (string value)
#db_flavor_ref = 1


[debug]

#
# From tempest.config
#

# Enable diagnostic commands (boolean value)
#enable = true

# A regex to determine which requests should be traced.  This is a
# regex to match the caller for rest client requests to be able to
# selectively trace calls out of specific classes and methods. It
# largely exists for test development, and is not expected to be used
# in a real deploy of tempest. This will be matched against the
# discovered ClassName:method in the test environment.  Expected
# values for this field are:   * ClassName:test_method_name - traces
# one test_method  * ClassName:setUp(Class) - traces specific setup
# functions  * ClassName:tearDown(Class) - traces specific teardown
# functions  * ClassName:_run_cleanups - traces the cleanup functions
# If nothing is specified, this feature is not enabled. To trace
# everything specify .* as the regex.  (string value)
#trace_requests =


[identity]

#
# From tempest.config
#

# Admin domain name for authentication (Keystone V3).The same domain
# applies to user and project (string value)
#admin_domain_name = <None>

# API key to use when authenticating as admin. (string value)
admin_password = {{ KEYSTONE_ADMIN_PASSWORD }}

# Role required to administrate keystone. (string value)
admin_role = admin

# Administrative Tenant name to use for Keystone API requests. (string
# value)
admin_tenant_name = admin

# Administrative Username to use for Keystone API requests. (string
# value)
admin_username = admin

# Alternate domain name for authentication (Keystone V3).The same
# domain applies to user and project (string value)
#alt_domain_name = <None>

# API key to use when authenticating as alternate user. (string value)
#alt_password = <None>

# Alternate user's Tenant name to use for Nova API requests. (string
# value)
#alt_tenant_name = <None>

# Username of alternate user to use for Nova API requests. (string
# value)
#alt_username = <None>

# Identity API version to be used for authentication for API tests.
# (string value)
auth_version = v2

# Catalog type of the Identity service. (string value)
catalog_type = identity

# Set to True if using self-signed SSL certificates. (boolean value)
#disable_ssl_certificate_validation = false

# Domain name for authentication (Keystone V3).The same domain applies
# to user and project (string value)
#domain_name = <None>

# The endpoint type to use for the identity service. (string value)
#endpoint_type = publicURL

# API key to use when authenticating. (string value)
password = {{ NOVA_SERVICE_PASSWORD }}

# The identity region name to use. Also used as the other services'
# region name unless they are set explicitly. If no such region is
# found in the service catalog, the first found one is used. (string
# value)
#region = RegionOne

# Tenant name to use for Nova API requests. (string value)
tenant_name = service

# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
uri = http://{{ CONTROLLER_HOST_ADDRESS }}:35357/v2.0/

# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
#
# Tempest complains if we don't set any uri_v3, even if it's disabled.
uri_v3 = <None>

# Username to use for Nova API requests. (string value)
username = {{ NOVA_SERVICE_USER }}


[identity-feature-enabled]

#
# From tempest.config
#

# Is the v2 identity API enabled (boolean value)
api_v2 = true

# Is the v3 identity API enabled (boolean value)
api_v3 = false

# Does the identity service have delegation and impersonation enabled
# (boolean value)
#trust = true


[image]

#
# From tempest.config
#

# Catalog type of the Image service. (string value)
catalog_type = image

# The endpoint type to use for the image service. (string value)
endpoint_type = publicURL

# http accessible image (string value)
http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz

# The image region name to use. If empty, the value of identity.region
# is used instead. If no such region is found in the service catalog,
# the first found one is used. (string value)
#region =


[image-feature-enabled]

#
# From tempest.config
#

# Is the v1 image API enabled (boolean value)
#api_v1 = true

# Is the v2 image API enabled (boolean value)
api_v2 = true


[input-scenario]

#
# From tempest.config
#

# Matching flavors become parameters for scenario tests (string value)
#flavor_regex = ^m1.nano$

# Matching images become parameters for scenario tests (string value)
#image_regex = ^cirros-0.3.1-x86_64-uec$

# SSH verification in tests is skippedfor matching images (string
# value)
#non_ssh_image_regex = ^.*[Ww]in.*$

# List of user mapped to regex to matching image names. (string value)
#ssh_user_regex = [["^.*[Cc]irros.*$", "root"]]


[messaging]

#
# From tempest.config
#

# Catalog type of the Messaging service. (string value)
#catalog_type = messaging

# The maximum grace period for a claim (integer value)
#max_claim_grace = 43200

# The maximum ttl for a claim (integer value)
#max_claim_ttl = 43200

# The maximum size of a message body (integer value)
#max_message_size = 262144

# The maximum ttl for a message (integer value)
#max_message_ttl = 1209600

# The maximum number of messages per claim (integer value)
#max_messages_per_claim = 20

# The maximum number of queue message per page when listing (or)
# posting messages (integer value)
#max_messages_per_page = 20

# The maximum metadata size for a queue (integer value)
#max_queue_metadata = 65536

# The maximum number of queue records per page when listing queues
# (integer value)
#max_queues_per_page = 20


[negative]

#
# From tempest.config
#

# Test generator class for all negative tests (string value)
#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator


[network]

#
# From tempest.config
#

# Time in seconds between network operation status checks. (integer
# value)
#build_interval = 1

# Timeout in seconds to wait for network operation to complete.
# (integer value)
#build_timeout = 300

# Catalog type of the Neutron service. (string value)
#catalog_type = network

# List of dns servers whichs hould be used for subnet creation (list
# value)
#dns_servers = 8.8.8.8,8.8.4.4

# The endpoint type to use for the network service. (string value)
#endpoint_type = publicURL

# Id of the public network that provides external connectivity (string
# value)
#public_network_id =

# Id of the public router that provides external connectivity (string
# value)
#public_router_id =

# The network region name to use. If empty, the value of
# identity.region is used instead. If no such region is found in the
# service catalog, the first found one is used. (string value)
#region =

# The cidr block to allocate tenant ipv4 subnets from (string value)
#tenant_network_cidr = 10.100.0.0/16

# The mask bits for tenant ipv4 subnets (integer value)
#tenant_network_mask_bits = 28

# The cidr block to allocate tenant ipv6 subnets from (string value)
#tenant_network_v6_cidr = 2003::/48

# The mask bits for tenant ipv6 subnets (integer value)
#tenant_network_v6_mask_bits = 64

# Whether tenant network connectivity should be evaluated directly
# (boolean value)
#tenant_networks_reachable = false


[network-feature-enabled]

#
# From tempest.config
#

# A list of enabled network extensions with a special entry all which
# indicates every extension is enabled. Empty list indicates all
# extensions are disabled (list value)
#api_extensions = all

# Allow the execution of IPv6 tests (boolean value)
#ipv6 = true

# Allow the execution of IPv6 subnet tests that use the extended IPv6
# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
#ipv6_subnet_attributes = false


[object-storage]

#
# From tempest.config
#

# Catalog type of the Object-Storage service. (string value)
#catalog_type = object-store

# Number of seconds to wait while looping to check the status of a
# container to container synchronization (integer value)
#container_sync_interval = 5

# Number of seconds to time on waiting for a container to container
# synchronization complete. (integer value)
#container_sync_timeout = 120

# The endpoint type to use for the object-store service. (string
# value)
#endpoint_type = publicURL

# Role to add to users created for swift tests to enable creating
# containers (string value)
#operator_role = Member

# The object-storage region name to use. If empty, the value of
# identity.region is used instead. If no such region is found in the
# service catalog, the first found one is used. (string value)
#region =

# User role that has reseller admin (string value)
#reseller_admin_role = ResellerAdmin


[object-storage-feature-enabled]

#
# From tempest.config
#

# Execute (old style) container-sync tests (boolean value)
#container_sync = true

# Execute discoverability tests (boolean value)
#discoverability = true

# A list of the enabled optional discoverable apis. A single entry,
# all, indicates that all of these features are expected to be enabled
# (list value)
#discoverable_apis = all

# Execute object-versioning tests (boolean value)
#object_versioning = true


[orchestration]

#
# From tempest.config
#

# Time in seconds between build status checks. (integer value)
#build_interval = 1

# Timeout in seconds to wait for a stack to build. (integer value)
#build_timeout = 1200

# Catalog type of the Orchestration service. (string value)
#catalog_type = orchestration

# The endpoint type to use for the orchestration service. (string
# value)
#endpoint_type = publicURL

# Name of heat-cfntools enabled image to use when launching test
# instances. (string value)
#image_ref = <None>

# Instance type for tests. Needs to be big enough for a full OS plus
# the test workload (string value)
#instance_type = m1.micro

# Name of existing keypair to launch servers with. (string value)
#keypair_name = <None>

# Value must match heat configuration of the same name. (integer
# value)
#max_resources_per_stack = 1000

# Value must match heat configuration of the same name. (integer
# value)
#max_template_size = 524288

# The orchestration region name to use. If empty, the value of
# identity.region is used instead. If no such region is found in the
# service catalog, the first found one is used. (string value)
#region =


[scenario]

#
# From tempest.config
#

# AKI image file name (string value)
#aki_img_file = cirros-0.3.1-x86_64-vmlinuz

# AMI image file name (string value)
#ami_img_file = cirros-0.3.1-x86_64-blank.img

# ARI image file name (string value)
#ari_img_file = cirros-0.3.1-x86_64-initrd

# Image container format (string value)
#img_container_format = bare

# Directory containing image files (string value)
#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec

# Image disk format (string value)
#img_disk_format = qcow2

# Image file name (string value)
# Deprecated group/name - [DEFAULT]/qcow2_img_file
#img_file = cirros-0.3.1-x86_64-disk.img

# specifies how many resources to request at once. Used for large
# operations testing. (integer value)
#large_ops_number = 0

# ssh username for the image file (string value)
#ssh_user = cirros


[service_available]

#
# From tempest.config
#

# Whether or not Ceilometer is expected to be available (boolean
# value)
ceilometer = false

# Whether or not cinder is expected to be available (boolean value)
cinder = true

# Whether or not glance is expected to be available (boolean value)
glance = true

# Whether or not Heat is expected to be available (boolean value)
heat = false

# Whether or not Horizon is expected to be available (boolean value)
horizon = true

# Whether or not Ironic is expected to be available (boolean value)
ironic = false

# Whether or not neutron is expected to be available (boolean value)
neutron = true

# Whether or not nova is expected to be available (boolean value)
nova = true

# Whether or not Sahara is expected to be available (boolean value)
sahara = false

# Whether or not swift is expected to be available (boolean value)
swift = false

# Whether or not Trove is expected to be available (boolean value)
trove = false

# Whether or not Zaqar is expected to be available (boolean value)
zaqar = false


[stress]

#
# From tempest.config
#

# Controller host. (string value)
#controller = <None>

# The number of threads created while stress test. (integer value)
#default_thread_number_per_action = 4

# Allows a full cleaning process after a stress test. Caution : this
# cleanup will remove every objects of every tenant. (boolean value)
#full_clean_stack = false

# Prevent the cleaning (tearDownClass()) between each stress test run
# if an exception occurs during this run. (boolean value)
#leave_dirty_stack = false

# time (in seconds) between log file error checks. (integer value)
#log_check_interval = 60

# Maximum number of instances to create during test. (integer value)
#max_instances = 16

# Directory containing log files on the compute nodes (string value)
#nova_logdir = <None>

# Controller host. (string value)
#target_controller = <None>

# regexp for list of log files. (string value)
#target_logfiles = <None>

# Path to private key. (string value)
#target_private_key_path = <None>

# ssh user. (string value)
#target_ssh_user = <None>


[telemetry]

#
# From tempest.config
#

# Catalog type of the Telemetry service. (string value)
#catalog_type = metering

# The endpoint type to use for the telemetry service. (string value)
#endpoint_type = publicURL

# This variable is used as flag to enable notification tests (boolean
# value)
#too_slow_to_test = true


[volume]

#
# From tempest.config
#

# Name of the backend1 (must be declared in cinder.conf) (string
# value)
backend1_name = LVM_iSCSI

# Name of the backend2 (must be declared in cinder.conf) (string
# value)
#backend2_name = BACKEND_2

# Time in seconds between volume availability checks. (integer value)
#build_interval = 1

# Timeout in seconds to wait for a volume to become available.
# (integer value)
#build_timeout = 300

# Catalog type of the Volume Service (string value)
catalog_type = volume

# Disk format to use when copying a volume to image (string value)
disk_format = raw

# The endpoint type to use for the volume service. (string value)
endpoint_type = publicURL

# The volume region name to use. If empty, the value of
# identity.region is used instead. If no such region is found in the
# service catalog, the first found one is used. (string value)
#region =

# Backend protocol to target when creating volume types (string value)
storage_protocol = iSCSI

# Backend vendor to target when creating volume types (string value)
#vendor_name = Open Source

# Default size in GB for volumes created by volumes tests (integer
# value)
volume_size = 1


[volume-feature-enabled]

#
# From tempest.config
#

# A list of enabled volume extensions with a special entry all which
# indicates every extension is enabled. Empty list indicates all
# extensions are disabled (list value)
#api_extensions = all

# Is the v1 volume API enabled (boolean value)
api_v1 = true

# Is the v2 volume API enabled (boolean value)
api_v2 = true

# Runs Cinder volumes backup test (boolean value)
backup = true

# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
multi_backend = false

# Runs Cinder volume snapshot test (boolean value)
snapshot = true