Merge "Change default output-dir to be $HOME"

This commit is contained in:
Zuul
2018-03-26 12:20:37 +00:00
committed by Gerrit Code Review
2 changed files with 1 additions and 4 deletions

View File

@@ -14,8 +14,6 @@ features:
configure ``undercloud install --use-heat`` behavior.
upgrade:
- |
The default value for `--output-dir` is changed for
undercloud heat installer to `$HOME/.undercloud-heat-installer`.
The content of the processed heat templates will be persisted
under the given path as `$output_dir/$tempdir/templates`, for
each run of the undercloud deploy or install commands, unless

View File

@@ -19,8 +19,7 @@ TRIPLEO_HEAT_TEMPLATES = "/usr/share/openstack-tripleo-heat-templates/"
OVERCLOUD_YAML_NAME = "overcloud.yaml"
OVERCLOUD_ROLES_FILE = "roles_data.yaml"
UNDERCLOUD_ROLES_FILE = "roles_data_undercloud.yaml"
UNDERCLOUD_OUTPUT_DIR = os.path.join(os.environ.get('HOME'),
'.undercloud-heat-installer')
UNDERCLOUD_OUTPUT_DIR = os.path.join(os.environ.get('HOME'))
OVERCLOUD_NETWORKS_FILE = "network_data.yaml"
RHEL_REGISTRATION_EXTRACONFIG_NAME = (
"extraconfig/pre_deploy/rhel-registration/")