Skip to content

Commit a887852

Browse files
committed
Fix the Tempest image url variable
Seems very strange the variable of the image url doeesn't have the correct prefix. This trivial fix will solve the issue. TrivialFix Change-Id: Ib5a073d5b8209005be8841e355e75047c77bd488 Signed-off-by: Maksim Malchuk <[email protected]> (cherry picked from commit d6e14f8)
1 parent c84196b commit a887852

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ansible/roles/tempest/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tempest_extra_volumes: "{{ default_extra_volumes }}"
3131
###########################
3232
# Tempest Required Resource
3333
###########################
34-
image_url: "https://github.com/cirros-dev/cirros/releases/download/0.5.1/cirros-0.5.1-x86_64-disk.img"
34+
tempest_image_url: "{{ image_url | default('https://github.com/cirros-dev/cirros/releases/download/0.5.1/cirros-0.5.1-x86_64-disk.img') }}"
3535

3636
tempest_image_id:
3737
tempest_image_alt_id: "{{ tempest_image_id }}"

ansible/roles/tempest/templates/tempest.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ca_certificates_file = {{ openstack_cacert }}
4141

4242
[image]
4343
region = {{ openstack_region_name }}
44-
http_image = {{ image_url }}
44+
http_image = {{ tempest_image_url }}
4545

4646
[image-feature-enabled]
4747
api_v1 = False

0 commit comments

Comments
 (0)