9f8a6f18b875fda3654d4fa8e7c2542096a03122
[apex.git] / apex / settings / deploy_settings.py
1 ##############################################################################
2 # Copyright (c) 2016 Michael Chapman (michapma@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
11 import yaml
12
13 from apex.common import constants
14
15 REQ_DEPLOY_SETTINGS = ['sdn_controller',
16                        'odl_version',
17                        'tacker',
18                        'congress',
19                        'dataplane',
20                        'sfc',
21                        'vpn',
22                        'vpp',
23                        'ceph',
24                        'gluon',
25                        'rt_kvm',
26                        'os_version',
27                        'l2gw',
28                        'sriov',
29                        'containers',
30                        'ceph_device',
31                        'vim']
32
33 OPT_DEPLOY_SETTINGS = ['performance',
34                        'vsperf',
35                        'yardstick',
36                        'dovetail',
37                        'odl_vpp_routing_node',
38                        'dvr',
39                        'odl_vpp_netvirt',
40                        'barometer',
41                        'calipso']
42
43 VALID_ROLES = ['Controller', 'Compute', 'ObjectStorage']
44 VALID_PERF_OPTS = ['kernel', 'nova', 'vpp', 'ovs']
45 VALID_DATAPLANES = ['ovs', 'ovs_dpdk', 'fdio']
46 REQ_PATCH_CRITERIA = ['change-id', 'project']
47 OPT_PATCH_CRITERIA = ['branch']
48
49
50 class DeploySettings(dict):
51     """
52     This class parses a APEX deploy settings yaml file into an object
53     """
54     def __init__(self, filename):
55         if isinstance(filename, str):
56             with open(filename, 'r') as deploy_settings_file:
57                 init_dict = yaml.safe_load(deploy_settings_file)
58         else:
59             # assume input is a dict to build from
60             init_dict = filename
61
62         super().__init__(init_dict)
63         self._validate_settings()
64
65     def _validate_settings(self):
66         """
67         Validates the deploy settings file provided
68
69         DeploySettingsException will be raised if validation fails.
70         """
71
72         if 'deploy_options' not in self:
73             raise DeploySettingsException("No deploy options provided in"
74                                           " deploy settings file")
75         if 'global_params' not in self:
76             raise DeploySettingsException("No global options provided in"
77                                           " deploy settings file")
78
79         deploy_options = self['deploy_options']
80         if not isinstance(deploy_options, dict):
81             raise DeploySettingsException("deploy_options should be a list")
82
83         if ('gluon' in self['deploy_options'] and
84            'vpn' in self['deploy_options']):
85                 if (self['deploy_options']['gluon'] is True and
86                    self['deploy_options']['vpn'] is False):
87                         raise DeploySettingsException(
88                             "Invalid deployment configuration: "
89                             "If gluon is enabled, "
90                             "vpn also needs to be enabled")
91
92         for setting, value in deploy_options.items():
93             if setting not in REQ_DEPLOY_SETTINGS + OPT_DEPLOY_SETTINGS:
94                 raise DeploySettingsException("Invalid deploy_option {} "
95                                               "specified".format(setting))
96             if setting == 'dataplane':
97                 if value not in VALID_DATAPLANES:
98                     planes = ' '.join(VALID_DATAPLANES)
99                     raise DeploySettingsException(
100                         "Invalid dataplane {} specified. Valid dataplanes:"
101                         " {}".format(value, planes))
102
103         for req_set in REQ_DEPLOY_SETTINGS:
104             if req_set not in deploy_options:
105                 if req_set == 'dataplane':
106                     self['deploy_options'][req_set] = 'ovs'
107                 elif req_set == 'ceph':
108                     self['deploy_options'][req_set] = True
109                 elif req_set == 'ceph_device':
110                     self['deploy_options'][req_set] = '/dev/loop3'
111                 elif req_set == 'odl_version':
112                     self['deploy_options'][req_set] = \
113                         constants.DEFAULT_ODL_VERSION
114                 elif req_set == 'os_version':
115                     self['deploy_options'][req_set] = \
116                         constants.DEFAULT_OS_VERSION
117                 elif req_set == 'vim':
118                     self['deploy_options'][req_set] = 'openstack'
119                 else:
120                     self['deploy_options'][req_set] = False
121             elif req_set == 'odl_version' and self['deploy_options'][
122                     'odl_version'] not in constants.VALID_ODL_VERSIONS:
123                 raise DeploySettingsException(
124                     "Invalid ODL version: {}".format(self[deploy_options][
125                         'odl_version']))
126             elif req_set == 'sriov':
127                 if self['deploy_options'][req_set] is True:
128                     raise DeploySettingsException(
129                         "Invalid SRIOV interface name: {}".format(
130                             self['deploy_options']['sriov']))
131
132         if 'performance' in deploy_options:
133             if not isinstance(deploy_options['performance'], dict):
134                 raise DeploySettingsException("Performance deploy_option"
135                                               "must be a dictionary.")
136             for role, role_perf_sets in deploy_options['performance'].items():
137                 if role not in VALID_ROLES:
138                     raise DeploySettingsException("Performance role {}"
139                                                   "is not valid, choose"
140                                                   "from {}".format(
141                                                       role,
142                                                       " ".join(VALID_ROLES)
143                                                   ))
144
145                 for key in role_perf_sets:
146                     if key not in VALID_PERF_OPTS:
147                         raise DeploySettingsException("Performance option {} "
148                                                       "is not valid, choose"
149                                                       "from {}".format(
150                                                           key,
151                                                           " ".join(
152                                                               VALID_PERF_OPTS)
153                                                       ))
154         # validate global params
155         if 'ha_enabled' not in self['global_params']:
156
157             raise DeploySettingsException('ha_enabled is missing in global '
158                                           'parameters of deploy settings file')
159         if 'patches' not in self['global_params']:
160             self['global_params']['patches'] = dict()
161         for node in ('undercloud', 'overcloud'):
162             if node not in self['global_params']['patches']:
163                 self['global_params']['patches'][node] = list()
164             else:
165                 patches = self['global_params']['patches'][node]
166                 assert isinstance(patches, list)
167                 for patch in patches:
168                     assert isinstance(patch, dict)
169                     # Assert all required criteria exists for each patch
170                     assert all(i in patch.keys() for i in REQ_PATCH_CRITERIA)
171                     patch_criteria = REQ_PATCH_CRITERIA + OPT_PATCH_CRITERIA
172                     # Assert all patch keys are valid criteria
173                     assert all(i in patch_criteria for i in patch.keys())
174
175     def _dump_performance(self):
176         """
177         Creates performance settings string for bash consumption.
178         Output will be in the form of a list that can be iterated over in
179         bash, with each string being the direct input to the performance
180         setting script in the form <role> <category> <key> <value> to
181         facilitate modification of the correct image.
182         """
183         bash_str = 'performance_options=(\n'
184         deploy_options = self['deploy_options']
185         for role, settings in deploy_options['performance'].items():
186             for category, options in settings.items():
187                 for key, value in options.items():
188                     bash_str += "\"{} {} {} {}\"\n".format(role,
189                                                            category,
190                                                            key,
191                                                            value)
192         bash_str += ')\n'
193         bash_str += '\n'
194         bash_str += 'performance_roles=(\n'
195         for role in self['deploy_options']['performance']:
196             bash_str += role + '\n'
197         bash_str += ')\n'
198         bash_str += '\n'
199
200         return bash_str
201
202     def _dump_deploy_options_array(self):
203         """
204         Creates deploy settings array in bash syntax.
205         """
206         bash_str = ''
207         for key, value in self['deploy_options'].items():
208             if not isinstance(value, bool):
209                 bash_str += "deploy_options_array[{}]=\"{}\"\n".format(key,
210                                                                        value)
211             else:
212                 bash_str += "deploy_options_array[{}]={}\n".format(key,
213                                                                    value)
214         return bash_str
215
216
217 class DeploySettingsException(Exception):
218     def __init__(self, value):
219         self.value = value
220
221     def __str__(self):
222         return self.value