示例#1
0
def ansible_playbook(playbooks, inventory, **kwargs):
    """ Runs a playbook as part of a Cloudify lifecycle operation """

    inventory_path = utils.get_inventory_path(inventory)
    ctx.logger.info('Inventory path: {0}.'.format(inventory_path))

    for playbook in playbooks:
        playbook_path = utils.get_playbook_path(playbook)
        ctx.logger.info('Playbook path: {0}.'.format(playbook_path))
        user = utils.get_agent_user()
        command = ['ansible-playbook', '-u', user,
                   '-i', inventory_path, playbook_path,
                   '--timeout=60', '-vvvv']
        ctx.logger.info('Running command: {0}.'.format(command))
        output = utils.run_command(command)
        ctx.logger.info('Command Output: {0}.'.format(output))
        ctx.logger.info('Finished running the Ansible Playbook.')
def ansible_playbook(playbooks, inventory=list(), **kwargs):
    """ Runs a playbook as part of a Cloudify lifecycle operation """

    inventory_path = utils.get_inventory_path(inventory)
    ctx.logger.info('Inventory path: {0}.'.format(inventory_path))

    for playbook in playbooks:
        playbook_path = utils.get_playbook_path(playbook)
        ctx.logger.info('Playbook path: {0}.'.format(playbook_path))
        user = utils.get_agent_user()
        command = [
            'ansible-playbook', '--sudo', '-u', user, '-i', inventory_path,
            playbook_path, '--timeout=60', '-vvvv'
        ]
        ctx.logger.info('Running command: {0}.'.format(command))
        output = utils.run_command(command)
        ctx.logger.info('Command Output: {0}.'.format(output))
        ctx.logger.info('Finished running the Ansible Playbook.')
def configure(user=None, key=None, **kwargs):

    agent_key_path = utils.get_keypair_path(key)

    configuration = '[defaults]\n' \
                    'host_key_checking=False\n' \
                    'private_key_file={0}\n'.format(agent_key_path)

    ctx.logger.info('Configuring Anisble.')
    file_path = utils.write_configuration_file(configuration)
    ctx.logger.info('Configured Ansible.')

    os.environ['ANSIBLE_CONFIG'] = file_path
    os.environ['USER'] = utils.get_agent_user(user)
    os.environ['HOME'] = home = os.path.expanduser("~")

    if os.path.exists(os.path.join(home, '.ansible')):
        shutil.rmtree(os.path.join(home, '.ansible'))

    os.makedirs(os.path.join(home, '.ansible'))
示例#4
0
def configure(user=None, key=None, **kwargs):

    agent_key_path = utils.get_keypair_path(key)

    configuration = '[defaults]\n' \
                    'host_key_checking=False\n' \
                    'private_key_file={0}\n'.format(agent_key_path)

    ctx.logger.info('Configuring Anisble.')
    file_path = utils.write_configuration_file(configuration)
    ctx.logger.info('Configured Ansible.')

    os.environ['ANSIBLE_CONFIG'] = file_path
    os.environ['USER'] = utils.get_agent_user(user)
    os.environ['HOME'] = home = os.path.expanduser("~")

    if os.path.exists(os.path.join(home, '.ansible')):
        shutil.rmtree(os.path.join(home, '.ansible'))

    os.makedirs(os.path.join(home, '.ansible'))
def ansible_playbook(playbooks, inventory=list(), extravars='', **kwargs):
    """ Runs a playbook as part of a Cloudify lifecycle operation """

    inventory_path = utils.get_inventory_path(inventory)
    ctx.logger.info('Inventory path: {}.'.format(inventory_path))
    extraargs = ' --extra-vars "{}"'.format(extravars) if extravars else ''
    for playbook in playbooks:
        playbook_path = utils.get_playbook_path(playbook)
        ctx.logger.info('Playbook path: {}.'.format(playbook_path))
        user = utils.get_agent_user()
        # command = ['ansible-playbook', '--sudo', '-u', user,
        #            '-i', inventory_path, '--timeout=60', '-vvvv']
        # if extraargs:
        #     command += shlex.split(extraargs)
        # command += shlex.split(playbook_path)
        command = 'ansible-playbook --sudo -u {} -i {} {} --timeout=60 -vvvv{}'.format(
            user, inventory_path, playbook_path,
            extraargs if extraargs else '')
        ctx.logger.info('Running command: {}.'.format(command))
        output = utils.run_command(command)
        ctx.logger.info('Command Output: {}.'.format(output))
        ctx.logger.info('Finished running the Ansible Playbook.')