We need to differentiate local_working_dir from working_dir as well as decouple the stack user from `ansible_user` var. Both of these are causing issues as we begin to automate deployments in more environments. - Cleanup duplicate variables that are consumed via extras-common - Note: extras-common depends on the common role in OOOQ - Cleanup redundant var and superfluous quotes from overcloud-scale role - Cleanup redundant comments in <role>/defaults/main.yml Closes-bug: 1654574 Change-Id: I9c7a3166ed1fc5042c11e420223134ea912b45c5
27 lines
808 B
YAML
27 lines
808 B
YAML
---
|
|
# defaults file for modify-image
|
|
|
|
# These variable do not have a default because there is no sane default. The
|
|
# role will fail immediately if either is not specified.
|
|
# image_to_modify:
|
|
# modify_script:
|
|
|
|
# The extract list defaults to empty list
|
|
modify_image_extract_list: []
|
|
|
|
# By default we use the global working directory for modifying images
|
|
modify_image_working_dir: "{{ working_dir }}"
|
|
|
|
# virt-customize defaults
|
|
# vc_args can be used to pass any arbitrary arguments to virt-customize
|
|
vc_args: ""
|
|
|
|
# the other "vc" vars below are converted to the correct virt-customize args,
|
|
# and are provided for convenience.
|
|
|
|
# ram and cpu are not set by default to take libguestfs defaults by default
|
|
# modify_image_vc_ram:
|
|
# modify_image_vc_cpu:
|
|
modify_image_vc_verbose: false
|
|
modify_image_vc_trace: false
|