From 19595b0b7adf58cdb7031c8c250d3f60de4dd545 Mon Sep 17 00:00:00 2001 From: Andrey Pavlov Date: Sun, 25 Oct 2015 22:50:26 +0300 Subject: [PATCH] functional tests: update helps string in config Change-Id: I85b5bc389a5c2aa0766a1bbc4490ae32aed588f5 --- config.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index e8862fd..c701c90 100644 --- a/config.py +++ b/config.py @@ -64,16 +64,19 @@ AWSGroup = [ help="Instance type"), cfg.StrOpt('image_id', default=None, - help="Image ID for instance running(can be cirros)"), + help="Image ID for instance running(can be cirros). " + "It must be any instance with instance-store " + "root device type."), cfg.StrOpt('ebs_image_id', default=None, - help="EBS Image ID for testing snapshots, volumes, instances"), + help="EBS Image ID for testing snapshots, volumes, instances."), cfg.StrOpt('image_user', default='cirros', help="User for sshing into instance based on configured image"), cfg.StrOpt('image_id_ubuntu', default=None, - help="Fully functional image ID for instance running"), + help="Fully functional image ID for instance running. " + "For some tests it must be ubuntu-trusty-i386."), cfg.StrOpt('image_user_ubuntu', default='ubuntu', help="User for sshing into instance based on configured image"),