2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# (c) 2013, Michael Scherer <misc@zarb.org>
|
|
|
|
#
|
2020-06-24 21:50:36 +02:00
|
|
|
# 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
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
inventory: openshift
|
|
|
|
short_description: Openshift gears external inventory script
|
|
|
|
description:
|
|
|
|
- Generates inventory of Openshift gears using the REST interface
|
|
|
|
- this permit to reuse playbook to setup an Openshift gear
|
|
|
|
author: Michael Scherer
|
|
|
|
'''
|
|
|
|
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
import StringIO
|
|
|
|
|
|
|
|
from ansible.module_utils.urls import open_url
|
|
|
|
from ansible.module_utils.six.moves import configparser as ConfigParser
|
|
|
|
|
|
|
|
configparser = None
|
|
|
|
|
|
|
|
|
|
|
|
def get_from_rhc_config(variable):
|
|
|
|
global configparser
|
|
|
|
CONF_FILE = os.path.expanduser('~/.openshift/express.conf')
|
|
|
|
if os.path.exists(CONF_FILE):
|
|
|
|
if not configparser:
|
|
|
|
ini_str = '[root]\n' + open(CONF_FILE, 'r').read()
|
|
|
|
configparser = ConfigParser.SafeConfigParser()
|
|
|
|
configparser.readfp(StringIO.StringIO(ini_str))
|
|
|
|
try:
|
|
|
|
return configparser.get('root', variable)
|
|
|
|
except ConfigParser.NoOptionError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def get_config(env_var, config_var):
|
|
|
|
result = os.getenv(env_var)
|
|
|
|
if not result:
|
|
|
|
result = get_from_rhc_config(config_var)
|
|
|
|
if not result:
|
|
|
|
sys.exit("failed=True msg='missing %s'" % env_var)
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def get_json_from_api(url, username, password):
|
|
|
|
headers = {'Accept': 'application/json; version=1.5'}
|
|
|
|
response = open_url(url, headers=headers, url_username=username, url_password=password)
|
|
|
|
return json.loads(response.read())['data']
|
|
|
|
|
|
|
|
|
|
|
|
username = get_config('ANSIBLE_OPENSHIFT_USERNAME', 'default_rhlogin')
|
|
|
|
password = get_config('ANSIBLE_OPENSHIFT_PASSWORD', 'password')
|
|
|
|
broker_url = 'https://%s/broker/rest/' % get_config('ANSIBLE_OPENSHIFT_BROKER', 'libra_server')
|
|
|
|
|
|
|
|
|
|
|
|
response = get_json_from_api(broker_url + '/domains', username, password)
|
|
|
|
|
|
|
|
response = get_json_from_api("%s/domains/%s/applications" %
|
|
|
|
(broker_url, response[0]['id']), username, password)
|
|
|
|
|
|
|
|
result = {}
|
|
|
|
for app in response:
|
|
|
|
|
|
|
|
# ssh://520311404832ce3e570000ff@blog-johndoe.example.org
|
|
|
|
(user, host) = app['ssh_url'][6:].split('@')
|
|
|
|
app_name = host.split('-')[0]
|
|
|
|
|
|
|
|
result[app_name] = {}
|
|
|
|
result[app_name]['hosts'] = []
|
|
|
|
result[app_name]['hosts'].append(host)
|
|
|
|
result[app_name]['vars'] = {}
|
|
|
|
result[app_name]['vars']['ansible_ssh_user'] = user
|
|
|
|
|
|
|
|
if len(sys.argv) == 2 and sys.argv[1] == '--list':
|
|
|
|
print(json.dumps(result))
|
|
|
|
elif len(sys.argv) == 3 and sys.argv[1] == '--host':
|
|
|
|
print(json.dumps({}))
|
|
|
|
else:
|
|
|
|
print("Need an argument, either --list or --host <host>")
|