3483e577c0208d599328a717001d71b0ed854ebe
[apex.git] / apex / inventory / inventory.py
1 ##############################################################################
2 # Copyright (c) 2016 Dan Radez (dradez@redhat.com) and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 import json
11 import platform
12
13 import yaml
14
15 from apex.common import constants
16 from apex.common import utils
17
18
19 class Inventory(dict):
20     """
21     This class parses an APEX inventory yaml file into an object. It
22     generates or detects all missing fields for deployment.
23
24     It then collapses one level of identification from the object to
25     convert it to a structure that can be dumped into a json file formatted
26     such that Triple-O can read the resulting json as an instackenv.json file.
27     """
28     def __init__(self, source, ha=True, virtual=False):
29         init_dict = {}
30         self.root_device = constants.DEFAULT_ROOT_DEV
31         if isinstance(source, str):
32             with open(source, 'r') as inventory_file:
33                 yaml_dict = yaml.safe_load(inventory_file)
34             # collapse node identifiers from the structure
35             init_dict['nodes'] = list(map(lambda n: n[1],
36                                           yaml_dict['nodes'].items()))
37         else:
38             # assume input is a dict to build from
39             init_dict = source
40
41         # move ipmi_* to pm_*
42         # make mac a list
43         def munge_node(node):
44             node['pm_addr'] = node['ipmi_ip']
45             node['pm_password'] = node['ipmi_pass']
46             node['pm_user'] = node['ipmi_user']
47             node['mac'] = [node['mac_address']]
48             if 'cpus' in node:
49                 node['cpu'] = node['cpus']
50
51             # aarch64 is always uefi
52             if 'arch' in node and node['arch'] == 'aarch64':
53                 node['capabilities'] += ',boot_mode:uefi'
54
55             for i in ('ipmi_ip', 'ipmi_pass', 'ipmi_user', 'mac_address',
56                       'disk_device'):
57                 if i in node.keys():
58                     if i == 'disk_device':
59                         self.root_device = node[i]
60                     del node[i]
61
62             return node
63         super().__init__({'nodes': list(map(munge_node, init_dict['nodes']))})
64
65         # verify number of nodes
66         if ha and len(self['nodes']) < 5:
67             raise InventoryException('You must provide at least 5 '
68                                      'nodes for HA deployment')
69         elif len(self['nodes']) < 2:
70             raise InventoryException('You must provide at least 2 nodes '
71                                      'for non-HA deployment')
72
73         if virtual:
74             self['host-ip'] = '192.168.122.1'
75             self['power_manager'] = \
76                 'nova.virt.baremetal.virtual_power_driver.VirtualPowerManager'
77             self['seed-ip'] = ''
78             self['ssh-key'] = 'INSERT_STACK_USER_PRIV_KEY'
79             self['ssh-user'] = 'root'
80
81     def dump_instackenv_json(self):
82         print(json.dumps(dict(self), sort_keys=True, indent=4))
83
84
85 class InventoryException(Exception):
86     def __init__(self, value):
87         self.value = value
88
89     def __str__(self):
90             return self.value