Matches one flavor and one image by default

Changes default in the input-scenario settings to match only
one image and one flavor, to avoid consuming gate time.

Fixes bug 1274628

Change-Id: Ide865012269d3f60250d24443e4f20af263ee021
diff --git a/etc/tempest.conf.sample b/etc/tempest.conf.sample
index 21c8506..8bcf2d3 100644
--- a/etc/tempest.conf.sample
+++ b/etc/tempest.conf.sample
@@ -494,7 +494,7 @@
 
 # Matching flavors become parameters for scenario tests
 # (string value)
-#flavor_regex=^m1.(micro|nano|tiny)$
+#flavor_regex=^m1.nano$
 
 # SSH verification in tests is skippedfor matching images
 # (string value)
diff --git a/tempest/config.py b/tempest/config.py
index 5a9199d..d5a8026 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -667,7 +667,7 @@
                default='^cirros-0.3.1-x86_64-uec$',
                help="Matching images become parameters for scenario tests"),
     cfg.StrOpt('flavor_regex',
-               default='^m1.(micro|nano|tiny)$',
+               default='^m1.nano$',
                help="Matching flavors become parameters for scenario tests"),
     cfg.StrOpt('non_ssh_image_regex',
                default='^.*[Ww]in.*$',