Merge "Copy the inventory for standalone deploy in output_dir" into stable/train

This commit is contained in:
Zuul 2021-04-19 11:39:49 +00:00 committed by Gerrit Code Review
commit f61eccc6ba
3 changed files with 10 additions and 2 deletions

View File

@ -98,8 +98,10 @@ VALIDATIONS_LOG_BASEDIR = '/var/log/validations'
DEFAULT_WORK_DIR = '/var/lib/mistral' DEFAULT_WORK_DIR = '/var/lib/mistral'
TRIPLEO_STATIC_INVENTORY = 'tripleo-ansible-inventory.yaml'
ANSIBLE_INVENTORY = \ ANSIBLE_INVENTORY = \
'/var/lib/mistral/overcloud/tripleo-ansible-inventory.yaml' '/var/lib/mistral/overcloud/{}'.format(TRIPLEO_STATIC_INVENTORY)
ANSIBLE_VALIDATION_DIR = ( ANSIBLE_VALIDATION_DIR = (
os.path.join(DEFAULT_VALIDATIONS_LEGACY_BASEDIR, 'playbooks') os.path.join(DEFAULT_VALIDATIONS_LEGACY_BASEDIR, 'playbooks')

View File

@ -814,7 +814,9 @@ class TestDeployUndercloud(TestPluginV1):
@mock.patch('tripleo_common.utils.config.Config', @mock.patch('tripleo_common.utils.config.Config',
autospec=True) autospec=True)
@mock.patch('os.path.join', return_value='/twd/inventory.yaml') @mock.patch('os.path.join', return_value='/twd/inventory.yaml')
def test_download_ansible_playbooks(self, mock_join, mock_stack_config, @mock.patch('shutil.copyfile')
def test_download_ansible_playbooks(self, mock_shutil, mock_join,
mock_stack_config,
mock_launch_heat, mock_importInv, mock_launch_heat, mock_importInv,
createdir_mock): createdir_mock):

View File

@ -862,6 +862,10 @@ class Deploy(command.Command):
} }
inventory.write_static_inventory(inv_path, extra_vars) inventory.write_static_inventory(inv_path, extra_vars)
# Move inventory in output_dir in order to be reusable by users:
shutil.copyfile(inv_path,
os.path.join(self.output_dir,
constants.TRIPLEO_STATIC_INVENTORY))
self.log.info(_('** Downloaded {0} ansible to {1} **').format( self.log.info(_('** Downloaded {0} ansible to {1} **').format(
stack_name, self.tmp_ansible_dir)) stack_name, self.tmp_ansible_dir))