diff --git a/releasenotes/notes/undercloud-deploy-tht-4af4b91774600e8f.yaml b/releasenotes/notes/undercloud-deploy-tht-4af4b91774600e8f.yaml index 5a8052a6a..63844c2fd 100644 --- a/releasenotes/notes/undercloud-deploy-tht-4af4b91774600e8f.yaml +++ b/releasenotes/notes/undercloud-deploy-tht-4af4b91774600e8f.yaml @@ -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 diff --git a/tripleoclient/constants.py b/tripleoclient/constants.py index 3724497c8..f6c4af0bd 100644 --- a/tripleoclient/constants.py +++ b/tripleoclient/constants.py @@ -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/")