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:
parent
9139224f2c
commit
b295335798
@ -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.
|
||||
|
@ -1,3 +1,3 @@
|
||||
devstack_base_dir: /opt/stack
|
||||
stage_dir: /opt/stack/
|
||||
stage_dir: "{{ ansible_user_dir }}"
|
||||
test_results_stage_name: test_results
|
||||
|
Loading…
Reference in New Issue
Block a user