summaryrefslogtreecommitdiffstats
path: root/xci/config/user-vars
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-06-01 14:11:23 +0100
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2017-08-11 12:56:12 -0700
commitabb18dd0a68b57b1f2921f4ce1fbddd4d91477cc (patch)
treec199e38181464b57cc2be61a9edebcd8f9ea4248 /xci/config/user-vars
parent0b7b98ff7121304fe0cb558790a0b82533ff1d69 (diff)
prototypes: xci: Make CLEAN_DIB_IMAGES variable configurable
The CLEAN_DIB_IMAGES variable determines whether the /httpboot or /tftpboot directories will be removed before running the xci-deploy script. This forces XCI to re-create the target OS images. We moved this variable from env-vars to user-vars since this is something that users normally want to tweak in their deployments. Change-Id: Ia48bd63979e3837aab7e47c906c2501e7c7dd0e1 Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci/config/user-vars')
-rwxr-xr-xxci/config/user-vars2
1 files changed, 2 insertions, 0 deletions
diff --git a/xci/config/user-vars b/xci/config/user-vars
index f9de940a..5ed53962 100755
--- a/xci/config/user-vars
+++ b/xci/config/user-vars
@@ -54,3 +54,5 @@ export OPNFV_OSA_PLAYBOOK=${OPNFV_OSA_PLAYBOOK:-"$OPENSTACK_OSA_PATH/playbooks/s
export ANSIBLE_VERBOSITY=${ANSIBLE_VERBOSITY-""}
export LOG_PATH=${LOG_PATH:-${XCI_DEVEL_ROOT}/opnfv/logs}
export RUN_TEMPEST=${RUN_TEMPEST:-false}
+# Set this to to true to force XCI to re-create the target OS images
+export CLEAN_DIB_IMAGES=${CLEAN_DIB_IMAGES:-false}