diff --git a/tripleoclient/constants.py b/tripleoclient/constants.py index abf16c92f..b62711abd 100644 --- a/tripleoclient/constants.py +++ b/tripleoclient/constants.py @@ -50,7 +50,7 @@ USER_PARAMETERS = 'user-environments/tripleoclient-parameters.yaml' # This directory may contain additional environments to use during deploy DEFAULT_ENV_DIRECTORY = os.path.join(os.environ.get('HOME', '~/'), '.tripleo', 'environments') - +DEPLOYED_SERVER_ENVIRONMENT = 'environments/deployed-server-environment.yaml' TRIPLEO_PUPPET_MODULES = "/usr/share/openstack-puppet/modules/" PUPPET_MODULES = "/etc/puppet/modules/" PUPPET_BASE = "/etc/puppet/" diff --git a/tripleoclient/v1/overcloud_deploy.py b/tripleoclient/v1/overcloud_deploy.py index fa9c70d14..14cc5d4b6 100644 --- a/tripleoclient/v1/overcloud_deploy.py +++ b/tripleoclient/v1/overcloud_deploy.py @@ -492,6 +492,10 @@ class DeployOvercloud(command.Command): template_utils.deep_update(env, self._create_parameters_env( parameters, tht_root, parsed_args.stack)) + if parsed_args.deployed_server: + created_env_files.append( + os.path.join(tht_root, constants.DEPLOYED_SERVER_ENVIRONMENT)) + if parsed_args.environment_files: created_env_files.extend(parsed_args.environment_files)