summaryrefslogtreecommitdiffstats
path: root/snaps/playbook_runner.py
blob: 371030985c18d8ed510670e57112b8725edc1b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright (c) 2016 Cable Television Laboratories, Inc. ("CableLabs")
#                    and others.  All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import logging

import re

from snaps.openstack.os_credentials import ProxySettings
from snaps.provisioning import ansible_utils

__author__ = 'spisarski'

logger = logging.getLogger('playbook_runner')


def main(parsed_args):
    """
    Uses ansible_utils for applying Ansible Playbooks to machines with a private key
    """
    logging.basicConfig(level=logging.DEBUG)
    logger.info('Starting Playbook Runner')

    proxy_settings = None
    if parsed_args.http_proxy:
        tokens = re.split(':', parsed_args.http_proxy)
        proxy_settings = ProxySettings(tokens[0], tokens[1], parsed_args.ssh_proxy_cmd)

    # Ensure can get an SSH client
    ansible_utils.ssh_client(parsed_args.ip_addr, parsed_args.host_user, parsed_args.priv_key, proxy_settings)

    retval = ansible_utils.apply_playbook(parsed_args.playbook, [parsed_args.ip_addr], parsed_args.host_user,
                                          parsed_args.priv_key, variables={'name': 'Foo'}, proxy_setting=proxy_settings)
    exit(retval)


if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('-a', '--ip-addr', dest='ip_addr', required=True, help='The Host IP Address')
    parser.add_argument('-k', '--priv-key', dest='priv_key', required=True, help='The location of the private key file')
    parser.add_argument('-u', '--host-user', dest='host_user', required=True, help='Host user account')
    parser.add_argument('-b', '--playbook', dest='playbook', required=True, help='Playbook Location')
    parser.add_argument('-p', '--http-proxy', dest='http_proxy', required=False, help='<host>:<port>')
    parser.add_argument('-s', '--ssh-proxy-cmd', dest='ssh_proxy_cmd', required=False)
    args = parser.parse_args()

    main(args)