Fix the default value of stage_dir

The current default value of stage_dir does not match the valid
default from zuul-jobs, which causes stackviz to be skipped when
stage_dir is not overwritten, which is the case in all CI jobs.

Setting default and docs to "{{ ansible_user_dir }}".

Change-Id: I9fd3f8541c8e3fbc406c5e5c0c5fe8427bf74112
This commit is contained in:
Andrea Frittoli (andreaf) 2018-01-30 08:37:28 +00:00
parent 9139224f2c
commit b295335798
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ the stackviz archive embedded in test images.
The devstack base directory.
.. zuul:rolevar:: stage_dir
:default: /opt/stack/logs
:default: "{{ ansible_user_dir }}"
The stage directory where the input data can be found and
the output will be produced.

View File

@ -1,3 +1,3 @@
devstack_base_dir: /opt/stack
stage_dir: /opt/stack/
stage_dir: "{{ ansible_user_dir }}"
test_results_stage_name: test_results