Fix tempest_image_dir default var to user's home tempest-image dir

Currently the tempest_image_dir default var points to
/opt/cache/files, basically used in openstack infra ci and the
normal user does not have permission to create it. Moving it to
ansible user home/tempest-image makes it easier to access it.

Change-Id: I62aa3eb48f779f45ff97cc5d449c7d9876752ac8
This commit is contained in:
Chandan Kumar 2019-03-04 17:38:48 +05:30
parent 1d7b014b41
commit b3e904e8f0
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ tempest_images:
name: "cirros"
# The location where images are downloaded to
tempest_image_dir: "/opt/cache/files"
tempest_image_dir: "{{ lookup('env', 'HOME') }}/tempest-images"
tempest_enable_instance_password: True