tempest: Pin Ubuntu image to one version

The tests running with Ubuntu image used to pass and then suddenly all
of them stopped working. The reason was the public key was added to the
authorized_keys to root directory instead of ubuntu user directory. This
patch pins the used version to specific release date so we don't get
broken in the future with the same issue again.

Also this patch decreases amount of memory per guest to 512M as it
appears to work fine.

Change-Id: I93d7d4e72c1708017afecf22defbebc10bf6bcf7
This commit is contained in:
Jakub Libosvar 2017-01-31 20:11:59 +01:00
parent ea9d837d55
commit a1a3720f7b
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
DOWNLOAD_DEFAULT_IMAGES=False
IMAGE_URLS="http://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img,"
DEFAULT_INSTANCE_TYPE="ds1G"
DEFAULT_INSTANCE_USER="ubuntu"
IMAGE_URLS="http://cloud-images.ubuntu.com/releases/16.04/release-20170113/ubuntu-16.04-server-cloudimg-amd64-disk1.img,"
DEFAULT_INSTANCE_TYPE=ds512M
DEFAULT_INSTANCE_USER=ubuntu
BUILD_TIMEOUT=392