blob: c696400cab7fa1b9eac5c201bd867f03c093f0a9 [file] [log] [blame]
Dennis Dmitriev86750962017-07-11 19:44:05 +03001# Copyright 2013 - 2017 Mirantis, Inc.
Dennis Dmitrieve56c8b92017-06-16 01:53:16 +03002#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15from __future__ import print_function
16
17import argparse
18import os
19import sys
20import yaml
21
22from reclass_tools import walk_models
23
24
Dennis Dmitriev86750962017-07-11 19:44:05 +030025class Shell(object):
26 def __init__(self, args):
27 self.args = args
28 self.params = self.get_params()
Dennis Dmitrieve56c8b92017-06-16 01:53:16 +030029
Dennis Dmitriev86750962017-07-11 19:44:05 +030030 def execute(self):
31 command_name = 'do_{}'.format(self.params.command.replace('-', '_'))
32 command_method = getattr(self, command_name)
33 command_method()
Dennis Dmitrieve56c8b92017-06-16 01:53:16 +030034
Dennis Dmitriev86750962017-07-11 19:44:05 +030035 def do_get_key(self):
36 results = walk_models.remove_reclass_parameter(
37 self.params.path,
38 self.params.key_name,
39 verbose=self.params.verbose,
40 pretend=True)
41
42 def do_del_key(self):
43 results = walk_models.remove_reclass_parameter(
44 self.params.path,
45 self.params.key_name,
46 verbose=self.params.verbose,
47 pretend=False)
48
49 def do_list_params(self):
50 results = walk_models.get_all_reclass_params(
51 self.params.path,
52 verbose=self.params.verbose)
53 print(yaml.dump(results))
54
55 def do_list_domains(self):
56 try:
57 from reclass_tools import reclass_models
58 except ImportError:
59 sys.exit("Please run this tool on the salt-master node "
60 "with installed 'reclass'")
61 inventory = reclass_models.inventory_list()
62 reclass_storage = reclass_models.reclass_storage(inventory=inventory)
63 print('\n'.join(sorted(reclass_storage.keys())))
Dennis Dmitrieve56c8b92017-06-16 01:53:16 +030064
65
Dennis Dmitriev86750962017-07-11 19:44:05 +030066 def do_list_nodes(self):
67 try:
68 from reclass_tools import reclass_models
69 except ImportError:
70 sys.exit("Please run this tool on the salt-master node "
71 "with installed 'reclass'")
72
73 inventory = reclass_models.inventory_list(domain=self.params.domain)
74 vcp_nodes = reclass_models.vcp_list(domain=self.params.domain,
75 inventory=inventory)
76 vcp_node_names = ['{0}.{1}'.format(name, domain)
77 for name, domain in vcp_nodes]
78
79 if self.params.vcp_only:
80 print('\n'.join(sorted(vcp_node_names)))
81 elif self.params.non_vcp_only:
82 print('\n'.join(sorted((node_name for node_name in inventory.keys()
83 if node_name not in vcp_node_names))))
84 else:
85 print('\n'.join(sorted(inventory.keys())))
86
87 def do_show_context(self):
88 try:
89 from reclass_tools import create_inventory
90 except ImportError:
91 sys.exit("Please run this tool on the salt-master node "
92 "with installed 'reclass'")
93
94 current_underlay_context = create_inventory.create_inventory_context(
95 domain=self.params.domain, keys=self.params.keys)
96
97 print(yaml.dump(current_underlay_context, default_flow_style=False))
98
99 def do_render(self):
100 try:
101 from reclass_tools import create_inventory
102 except ImportError:
103 sys.exit("Please run this tool on the salt-master node "
104 "with installed 'reclass'")
105
106 if not self.params.template_dir or not self.params.output_dir \
107 or not self.params.contexts:
108 sys.exit("Missing parameters, see: reclass-tools render -h")
109
110 create_inventory.render_dir(template_dir=self.params.template_dir,
111 output_dir=self.params.output_dir,
112 contexts=self.params.contexts)
113
114 def get_params(self):
115
116 verbose_parser = argparse.ArgumentParser(add_help=False)
117 verbose_parser.add_argument('--verbose', dest='verbose',
118 action='store_const', const=True,
119 help='Show verbosed output', default=False)
120
121 key_parser = argparse.ArgumentParser(add_help=False)
122 key_parser_help = (
123 'Key name to find in reclass model files, for example:'
124 ' parameters.linux.network.interface')
125 key_parser.add_argument('key_name', help=key_parser_help, default=None)
126
127 keys_parser = argparse.ArgumentParser(add_help=False)
128 keys_parser.add_argument(
129 'keys',
130 help='Key names to find in reclass model files', nargs='*')
131
132 path_parser = argparse.ArgumentParser(add_help=False)
133 path_parser.add_argument(
134 'path',
135 help='Path to search for *.yml files.', nargs='+')
136
137 domain_parser = argparse.ArgumentParser(add_help=False)
138 domain_parser.add_argument(
139 '--domain', '-d', dest='domain',
140 help=('Show only the nodes which names are ended with the '
141 'specified domain, for example: example.local'))
142
143 vcp_only_parser = argparse.ArgumentParser(add_help=False)
144 vcp_only_parser.add_argument(
145 '--vcp-only', dest='vcp_only',
146 action='store_const', const=True,
147 help=('Show only VCP nodes (present in '
148 'parameters.salt.control.cluster.internal.node)'),
149 default=False)
150
151 non_vcp_only_parser = argparse.ArgumentParser(add_help=False)
152 non_vcp_only_parser.add_argument(
153 '--non-vcp-only', dest='non_vcp_only',
154 action='store_const', const=True, default=False,
155 help=('Show only non-VCP nodes (absent in '
156 'parameters.salt.control.cluster.internal.node)'))
157
158 render_parser = argparse.ArgumentParser(add_help=False)
159 render_parser.add_argument(
160 '--template-dir', '-t', dest='template_dir',
161 help=('Coockiecutter-based template directory'))
162 render_parser.add_argument(
163 '--output-dir', '-o', dest='output_dir',
164 help=('Path to the directory where the rendered '
165 'template will be placed'))
166 render_parser.add_argument(
167 '--context', '-c', dest='contexts', nargs='+',
168 help=('YAML/JSON files with context data to render '
169 'the template'))
170
171
172
173 parser = argparse.ArgumentParser(
174 description="Manage virtual environments. "
175 "For additional help, use with -h/--help option")
176 subparsers = parser.add_subparsers(title="Operation commands",
177 help='available commands',
178 dest='command')
179
180 # TODO: add-class NNN [to] MMM.yml # can be used with 'render'
181 subparsers.add_parser('get-key',
182 parents=[key_parser, path_parser,
183 verbose_parser],
184 help="Find a key in YAMLs found in <path>",
185 description=("Get a key collected from "
186 "different YAMLs"))
187 subparsers.add_parser('del-key',
188 parents=[key_parser, path_parser,
189 verbose_parser],
190 help="Delete a key from YAMLs found in <path>",
191 description="Delete a key from different YAMLs")
192 subparsers.add_parser('list-params',
193 parents=[path_parser, verbose_parser],
194 help=("Collect all options for "
195 "'parameters._params' keys from YAMLs "
196 "found in <path>"))
197 subparsers.add_parser('list-nodes',
198 parents=[domain_parser, vcp_only_parser,
199 non_vcp_only_parser],
200 help=("List nodes that are available for "
201 "reclass. Use on salt-master node only!"))
202 subparsers.add_parser('list-domains',
203 help=("List domains that are available from "
204 "reclass models. Use on salt-master "
205 "node only!"))
206 subparsers.add_parser('show-context',
207 parents=[domain_parser, keys_parser],
208 help=("Show domain nodes with rendered content "
209 "for specified keys. Use on salt-master "
210 "node for already generated inventory "
211 "only!"))
212 subparsers.add_parser('render',
213 parents=[render_parser],
214 help=("Render cookiecutter template using "
215 "multiple metadata sources"))
216
217 if len(self.args) == 0:
218 self.args = ['-h']
219 return parser.parse_args(self.args)
220
221
222def main(args=None):
Dennis Dmitrieve56c8b92017-06-16 01:53:16 +0300223 if args is None:
224 args = sys.argv[1:]
225
Dennis Dmitriev86750962017-07-11 19:44:05 +0300226 shell = Shell(args)
227 shell.execute()