Merge "Raise orchestration build_timeout to 600 seconds"
diff --git a/etc/tempest.conf.sample b/etc/tempest.conf.sample
index ce867e6..31aff61 100644
--- a/etc/tempest.conf.sample
+++ b/etc/tempest.conf.sample
@@ -693,7 +693,7 @@
 
 # Timeout in seconds to wait for a stack to build. (integer
 # value)
-#build_timeout=300
+#build_timeout=600
 
 # Instance type for tests. Needs to be big enough for a full
 # OS plus the test workload (string value)
diff --git a/tempest/config.py b/tempest/config.py
index dd5cc58..a82d6d2 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -533,7 +533,7 @@
                default=1,
                help="Time in seconds between build status checks."),
     cfg.IntOpt('build_timeout',
-               default=300,
+               default=600,
                help="Timeout in seconds to wait for a stack to build."),
     cfg.StrOpt('instance_type',
                default='m1.micro',