mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
832dd55144
* sanity: Add future boilerplate Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Module Utils Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Scripts Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * sanity: Add future boilerplate * Tests Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * CI failure Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
117 lines
2.9 KiB
Python
117 lines
2.9 KiB
Python
#!/usr/bin/env python
|
|
|
|
# (c) 2015, Marc Abramowitz <marca@surveymonkey.com>
|
|
#
|
|
# This file is part of Ansible.
|
|
#
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
# Dynamic inventory script which lets you use nodes discovered by Canonical's
|
|
# Landscape (http://www.ubuntu.com/management/landscape-features).
|
|
#
|
|
# Requires the `landscape_api` Python module
|
|
# See:
|
|
# - https://landscape.canonical.com/static/doc/api/api-client-package.html
|
|
# - https://landscape.canonical.com/static/doc/api/python-api.html
|
|
#
|
|
# Environment variables
|
|
# ---------------------
|
|
# - `LANDSCAPE_API_URI`
|
|
# - `LANDSCAPE_API_KEY`
|
|
# - `LANDSCAPE_API_SECRET`
|
|
# - `LANDSCAPE_API_SSL_CA_FILE` (optional)
|
|
|
|
|
|
import argparse
|
|
import collections
|
|
import os
|
|
import sys
|
|
|
|
from landscape_api.base import API, HTTPError
|
|
|
|
import json
|
|
|
|
_key = 'landscape'
|
|
|
|
|
|
class EnvironmentConfig(object):
|
|
uri = os.getenv('LANDSCAPE_API_URI')
|
|
access_key = os.getenv('LANDSCAPE_API_KEY')
|
|
secret_key = os.getenv('LANDSCAPE_API_SECRET')
|
|
ssl_ca_file = os.getenv('LANDSCAPE_API_SSL_CA_FILE')
|
|
|
|
|
|
def _landscape_client():
|
|
env = EnvironmentConfig()
|
|
return API(
|
|
uri=env.uri,
|
|
access_key=env.access_key,
|
|
secret_key=env.secret_key,
|
|
ssl_ca_file=env.ssl_ca_file)
|
|
|
|
|
|
def get_landscape_members_data():
|
|
return _landscape_client().get_computers()
|
|
|
|
|
|
def get_nodes(data):
|
|
return [node['hostname'] for node in data]
|
|
|
|
|
|
def get_groups(data):
|
|
groups = collections.defaultdict(list)
|
|
|
|
for node in data:
|
|
for value in node['tags']:
|
|
groups[value].append(node['hostname'])
|
|
|
|
return groups
|
|
|
|
|
|
def get_meta(data):
|
|
meta = {'hostvars': {}}
|
|
for node in data:
|
|
meta['hostvars'][node['hostname']] = {'tags': node['tags']}
|
|
return meta
|
|
|
|
|
|
def print_list():
|
|
data = get_landscape_members_data()
|
|
nodes = get_nodes(data)
|
|
groups = get_groups(data)
|
|
meta = get_meta(data)
|
|
inventory_data = {_key: nodes, '_meta': meta}
|
|
inventory_data.update(groups)
|
|
print(json.dumps(inventory_data))
|
|
|
|
|
|
def print_host(host):
|
|
data = get_landscape_members_data()
|
|
meta = get_meta(data)
|
|
print(json.dumps(meta['hostvars'][host]))
|
|
|
|
|
|
def get_args(args_list):
|
|
parser = argparse.ArgumentParser(
|
|
description='ansible inventory script reading from landscape cluster')
|
|
mutex_group = parser.add_mutually_exclusive_group(required=True)
|
|
help_list = 'list all hosts from landscape cluster'
|
|
mutex_group.add_argument('--list', action='store_true', help=help_list)
|
|
help_host = 'display variables for a host'
|
|
mutex_group.add_argument('--host', help=help_host)
|
|
return parser.parse_args(args_list)
|
|
|
|
|
|
def main(args_list):
|
|
args = get_args(args_list)
|
|
if args.list:
|
|
print_list()
|
|
if args.host:
|
|
print_host(args.host)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv[1:])
|