From ffac8a4876b2fc783596fd31a0842b2c4c39f244 Mon Sep 17 00:00:00 2001 From: Martin Kopec Date: Fri, 25 Oct 2019 13:49:16 +0000 Subject: [PATCH] Use https for cirros image Let's download cirros image using https because http is slower and may results in timeout issues. Also using https is a better practice. Change-Id: I57a3e078932d1ef69f2eafdc589a9d4d17918483 --- config_tempest/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_tempest/constants.py b/config_tempest/constants.py index 0a8d36da..0a3721ea 100644 --- a/config_tempest/constants.py +++ b/config_tempest/constants.py @@ -23,7 +23,7 @@ TEMPEST_WORKSPACE = os.getcwd() DEPLOYER_INPUT = os.path.join(os.path.expanduser("~"), "tempest-deployer-input.conf") -DEFAULT_IMAGE = ("http://download.cirros-cloud.net/0.4.0/" +DEFAULT_IMAGE = ("https://download.cirros-cloud.net/0.4.0/" "cirros-0.4.0-x86_64-disk.img") DEFAULT_IMAGE_FORMAT = 'qcow2'