blob: ed3f2e87b657fd22654ebf10bc73e3a7a366da2a [file] [log] [blame]
Sean M. Collins09e550c2014-10-21 11:40:08 -04001`DevStack </>`__
2
3- `Overview <overview.html>`__
4- `Changes <changes.html>`__
5- `FAQ <faq.html>`__
6- `git.openstack.org <https://git.openstack.org/cgit/openstack-dev/devstack>`__
7- `Gerrit <https://review.openstack.org/#/q/status:open+project:openstack-dev/devstack,n,z>`__
8
9exerciserc Exercise settings
10----------------------------
11
12``exerciserc`` is used to configure settings for the exercise scripts.
13The values shown below are the default values. Thse can all be
14overridden by setting them in the ``localrc`` section.
15
16ACTIVE\_TIMEOUT
17 Max time to wait while vm goes from build to active state
18
19 ::
20
21 ACTIVE_TIMEOUT==30
22
23ASSOCIATE\_TIMEOUT
24 Max time to wait for proper IP association and dis-association.
25
26 ::
27
28 ASSOCIATE_TIMEOUT=15
29
30BOOT\_TIMEOUT
31 Max time till the vm is bootable
32
33 ::
34
35 BOOT_TIMEOUT=30
36
37RUNNING\_TIMEOUT
38 Max time from run instance command until it is running
39
40 ::
41
42 RUNNING_TIMEOUT=$(($BOOT_TIMEOUT + $ACTIVE_TIMEOUT))
43
44TERMINATE\_TIMEOUT
45 Max time to wait for a vm to terminate
46
47 ::
48
49 TERMINATE_TIMEOUT=30