blob: 1f63ae9af2174435e9c14b90006354a8e7b9babc [file] [log] [blame]
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +02001# Copyright 2016 Mirantis, Inc.
2#
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
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +020015import netaddr
Dennis Dmitrievad5f8582019-04-12 13:15:08 +030016import pkg_resources
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +020017
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030018from collections import defaultdict
19
20from datetime import datetime
Dennis Dmitrievb8115f52017-12-15 13:09:56 +020021from pepper import libpepper
22from tcp_tests.helpers import utils
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030023from tcp_tests import logger
Dmitry Tyzhnenko35413c02018-03-05 14:12:37 +020024from tcp_tests import settings
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030025from tcp_tests.managers.execute_commands import ExecuteCommandsMixin
26
27LOG = logger.logger
28
29
30class SaltManager(ExecuteCommandsMixin):
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020031 """docstring for SaltManager"""
32
Dmitry Tyzhnenkobc0f8262017-04-28 15:39:26 +030033 __config = None
34 __underlay = None
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030035 _map = {
36 'enforceState': 'enforce_state',
37 'enforceStates': 'enforce_states',
38 'runState': 'run_state',
39 'runStates': 'run_states',
40 }
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020041
Dmitry Tyzhnenko5a5d8da2017-12-14 14:14:42 +020042 def __init__(self, config, underlay, host=None, port='6969',
43 username=None, password=None):
Dmitry Tyzhnenkobc0f8262017-04-28 15:39:26 +030044 self.__config = config
45 self.__underlay = underlay
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030046 self.__port = port
47 self.__host = host
48 self.__api = None
Dmitry Tyzhnenko5a5d8da2017-12-14 14:14:42 +020049 self.__user = username or settings.SALT_USER
50 self.__password = password or settings.SALT_PASSWORD
Dennis Dmitrieveac3aab2017-07-12 16:36:41 +030051 self._salt = self
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020052
Dmitry Tyzhnenkobc0f8262017-04-28 15:39:26 +030053 super(SaltManager, self).__init__(config=config, underlay=underlay)
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020054
55 def install(self, commands):
Dina Belovae6fdffb2017-09-19 13:58:34 -070056 # if self.__config.salt.salt_master_host == '0.0.0.0':
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030057 # # Temporary workaround. Underlay should be extended with roles
58 # salt_nodes = self.__underlay.node_names()
59 # self.__config.salt.salt_master_host = \
60 # self.__underlay.host_by_node_name(salt_nodes[0])
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020061
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030062 self.execute_commands(commands=commands,
63 label="Install and configure salt")
Dennis Dmitrievad5f8582019-04-12 13:15:08 +030064 self.create_env_salt()
65 self.create_env_jenkins_day01()
Oleksii Butenko3b3bab12019-05-23 17:30:15 +030066 # self.create_env_jenkins_cicd()
67 # self.create_env_k8s()
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030068
Dmitry Tyzhnenko5a5d8da2017-12-14 14:14:42 +020069 def change_creds(self, username, password):
70 self.__user = username
71 self.__password = password
72
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030073 @property
74 def port(self):
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030075 return self.__port
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030076
77 @property
78 def host(self):
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030079 if self.__host:
80 return self.__host
81 else:
Dina Belovae6fdffb2017-09-19 13:58:34 -070082 # TODO(ddmitriev): consider to add a check and raise
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030083 # exception if 'salt_master_host' is not initialized.
84 return self.__config.salt.salt_master_host
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030085
86 @property
87 def api(self):
88 def login():
89 LOG.info("Authentication in Salt API")
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030090 self.__api.login(
91 username=self.__user,
92 password=self.__password,
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030093 eauth='pam')
94 return datetime.now()
95
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030096 if self.__api:
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030097 if (datetime.now() - self.__session_start).seconds < 5 * 60:
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +030098 return self.__api
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +030099 else:
100 # FIXXME: Change to debug
101 LOG.info("Session's expired")
102 self.__session_start = login()
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +0300103 return self.__api
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300104
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300105 url = "http://{host}:{port}".format(
106 host=self.host, port=self.port)
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +0300107 LOG.info("Connecting to Salt API {0}".format(url))
Dennis Dmitrievb8115f52017-12-15 13:09:56 +0200108 self.__api = libpepper.Pepper(url)
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300109 self.__session_start = login()
Dennis Dmitriev2d60c8e2017-05-12 18:34:01 +0300110 return self.__api
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300111
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000112 def local(self, tgt, fun, args=None, kwargs=None, timeout=None):
113 return self.api.local(tgt, fun, args, kwargs, timeout=timeout,
114 expr_form='compound')
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300115
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000116 def local_async(self, tgt, fun, args=None, kwargs=None, timeout=None):
117 return self.api.local_async(tgt, fun, args, kwargs, timeout=timeout)
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300118
119 def lookup_result(self, jid):
120 return self.api.lookup_jid(jid)
121
122 def check_result(self, r):
123 if len(r.get('return', [])) == 0:
124 raise LookupError("Result is empty or absent")
125
126 result = r['return'][0]
Dmitry Tyzhnenkobc0f8262017-04-28 15:39:26 +0300127 if len(result) == 0:
128 raise LookupError("Result is empty or absent")
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300129 LOG.info("Job has result for %s nodes", result.keys())
130 fails = defaultdict(list)
131 for h in result:
132 host_result = result[h]
133 LOG.info("On %s executed:", h)
134 if isinstance(host_result, list):
135 fails[h].append(host_result)
136 continue
137 for t in host_result:
138 task = host_result[t]
139 if task['result'] is False:
140 fails[h].append(task)
141 LOG.error("%s - %s", t, task['result'])
142 else:
143 LOG.info("%s - %s", t, task['result'])
144
145 return fails if fails else None
146
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000147 def enforce_state(self, tgt, state, args=None, kwargs=None, timeout=None):
148 r = self.local(tgt=tgt, fun='state.sls', args=state, timeout=timeout)
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300149 f = self.check_result(r)
150 return r, f
151
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000152 def enforce_states(self, tgt, state, args=None, kwargs=None, timeout=None):
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300153 rets = []
154 for s in state:
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000155 r = self.enforce_state(tgt=tgt, state=s, timeout=timeout)
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300156 rets.append(r)
157 return rets
158
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000159 def run_state(self, tgt, state, args=None, kwargs=None, timeout=None):
160 return self.local(tgt=tgt, fun=state, args=args, kwargs=kwargs,
161 timeout=timeout), None
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300162
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000163 def run_states(self, tgt, state, args=None, kwargs=None, timeout=None):
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300164 rets = []
165 for s in state:
Dennis Dmitrievb6bcc5c2018-09-26 11:07:53 +0000166 r = self.run_state(tgt=tgt, state=s, args=args, kwargs=kwargs,
167 timeout=timeout)
Dmitry Tyzhnenko2b730a02017-04-07 19:31:32 +0300168 rets.append(r)
169 return rets
Artem Panchenko0594cd72017-06-12 13:25:26 +0300170
171 def get_pillar(self, tgt, pillar):
172 result = self.local(tgt=tgt, fun='pillar.get', args=pillar)
173 return result['return']
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +0200174
Dennis Dmitriev2a498732018-12-21 18:30:23 +0200175 def get_single_pillar(self, tgt, pillar):
176 """Get a scalar value from a single node
177
178 :return: pillar value
179 """
180
181 result = self.get_pillar(tgt, pillar)
182 nodes = result[0].keys()
183
184 if not nodes:
185 raise LookupError("No minions selected "
186 "for the target '{0}'".format(tgt))
187 if len(nodes) > 1:
188 raise LookupError("Too many minions selected "
189 "for the target '{0}' , expected one: {1}"
190 .format(tgt, nodes))
191 return result[0][nodes[0]]
192
Dennis Dmitriev2d643bc2017-12-04 12:23:47 +0200193 def get_grains(self, tgt, grains):
194 result = self.local(tgt=tgt, fun='grains.get', args=grains)
195 return result['return']
196
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +0200197 def get_ssh_data(self):
198 """Generate ssh config for Underlay
199
200 :param roles: list of strings
201 """
202
203 pool_name = self.__config.underlay.net_mgmt
204 pool_net = netaddr.IPNetwork(self.__config.underlay.address_pools[
205 self.__config.underlay.net_mgmt])
206 hosts = self.local('*', 'grains.item', ['host', 'ipv4'])
207
208 if len(hosts.get('return', [])) == 0:
209 raise LookupError("Hosts is empty or absent")
210 hosts = hosts['return'][0]
211 if len(hosts) == 0:
212 raise LookupError("Hosts is empty or absent")
213
Dennis Dmitriev83cc1d52018-11-09 15:35:30 +0200214 def host(minion_id, ip):
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +0200215 return {
216 'roles': ['salt_minion'],
217 'keys': [
218 k['private'] for k in self.__config.underlay.ssh_keys
219 ],
Dennis Dmitriev83cc1d52018-11-09 15:35:30 +0200220 'node_name': minion_id,
221 'minion_id': minion_id,
Dmitry Tyzhnenkob8641832017-11-07 17:02:47 +0200222 'host': ip,
223 'address_pool': pool_name,
224 'login': settings.SSH_NODE_CREDENTIALS['login'],
225 'password': settings.SSH_NODE_CREDENTIALS['password']
226 }
227
Dmitry Tyzhnenkob610afd2018-02-19 15:43:45 +0200228 try:
229 ret = [
230 host(k, next(i for i in v['ipv4'] if i in pool_net))
231 for k, v in hosts.items()
232 if next(i for i in v['ipv4'] if i in pool_net)]
233 LOG.debug("Fetched ssh data from salt grains - {}".format(ret))
234 return ret
235 except StopIteration:
236 msg = ("Can't match nodes ip address with network cidr\n"
237 "Managment network - {net}\n"
238 "Host with address - {host_list}".format(
239 net=pool_net,
240 host_list={k: v['ipv4'] for k, v in hosts.items()}))
241 raise StopIteration(msg)
Dennis Dmitriev2d643bc2017-12-04 12:23:47 +0200242
Dennis Dmitriev83cc1d52018-11-09 15:35:30 +0200243 def update_ssh_data_from_minions(self):
244 """Combine existing underlay.ssh with VCP salt minions"""
245 salt_nodes = self.get_ssh_data()
246
247 for salt_node in salt_nodes:
248 nodes = [n for n in self.__config.underlay.ssh
249 if salt_node['host'] == n['host']
250 and salt_node['address_pool'] == n['address_pool']]
251 if nodes:
252 # Assume that there can be only one node with such IP address
253 # Just update minion_id for this node
254 nodes[0]['minion_id'] = salt_node['minion_id']
255 else:
256 # New node, add to config.underlay.ssh
257 self.__config.underlay.ssh.append(salt_node)
258
259 self.__underlay.config_ssh = []
260 self.__underlay.add_config_ssh(self.__config.underlay.ssh)
261
Dennis Dmitriev2d643bc2017-12-04 12:23:47 +0200262 def service_status(self, tgt, service):
263 result = self.local(tgt=tgt, fun='service.status', args=service)
264 return result['return']
265
266 def service_restart(self, tgt, service):
267 result = self.local(tgt=tgt, fun='service.restart', args=service)
268 return result['return']
269
270 def service_stop(self, tgt, service):
271 result = self.local(tgt=tgt, fun='service.stop', args=service)
272 return result['return']
Dennis Dmitrievb8115f52017-12-15 13:09:56 +0200273
Dmitriy Kruglov07977de2019-09-02 13:15:18 +0200274 def pkg_install(self, tgt, pkg):
275 result = self.local(tgt=tgt, fun='pkg.install', args=pkg)
276 return result['return']
277
278 def pkg_info_installed(self, tgt, pkg):
279 result = self.local(tgt=tgt, fun='pkg.info_installed', args=pkg)
280 return result['return']
281
Victor Ryzhenkin95046882018-12-29 19:18:40 +0400282 def cmd_run(self, tgt, cmd):
283 result = self.local(tgt=tgt, fun='cmd.run', args=cmd)
284 return result['return']
285
Hanna Arhipova653d5562020-08-03 15:32:09 +0300286 def file_write(self, tgt, filename, content):
287 result = self.local(tgt=tgt,
288 fun='file.write',
289 args=[filename, content])
290 return result['return']
291
292 def file_makedirs(self, tgt, path):
293 if path[-1] != "/":
294 path += "/"
295 result = self.local(tgt=tgt, fun='file.makedirs', args=path)
296 return result['return']
297
Dennis Dmitrievfa1774a2019-05-28 15:27:44 +0300298 @utils.retry(10, exception=libpepper.PepperException)
Dennis Dmitriev427e4152019-05-08 15:12:43 +0300299 def sync_time(self, tgt='*'):
Dennis Dmitrievb8115f52017-12-15 13:09:56 +0200300 LOG.info("NTP time sync on the salt minions '{0}'".format(tgt))
301 # Force authentication update on the next API access
302 # because previous authentication most probably is not valid
303 # before or after time sync.
304 self.__api = None
Dmitry Tyzhnenko80ce0202019-02-07 13:27:19 +0200305 if not settings.SKIP_SYNC_TIME:
Andrew Baraniuk5da5c582019-06-20 12:12:45 +0300306 cmd = ('chmod -x /usr/sbin/ntpd'
307 'service ntp stop;'
Dennis Dmitrievfa1774a2019-05-28 15:27:44 +0300308 # note: maas-rackd will return 'pool' after start
Andrew Baraniukab06b7a2019-06-18 13:53:00 +0300309 'sed -i \'s/^pool ntp.ubuntu.com/server ntp.cesnet.cz/g\' '
310 '/etc/ntp/maas.conf;'
Andrew Baraniuk5da5c582019-06-20 12:12:45 +0300311 'sed -i \'s/^pool ntp.ubuntu.com/server ntp.cesnet.cz/g\' '
312 '/etc/ntp.conf;'
Dennis Dmitriev427e4152019-05-08 15:12:43 +0300313 'if [ -x /usr/sbin/ntpdate ]; then'
Andrew Baraniuk5da5c582019-06-20 12:12:45 +0300314 ' ntpdate -s ntp.cesnet.cz;'
Dennis Dmitriev427e4152019-05-08 15:12:43 +0300315 'else'
316 ' ntpd -gq;'
317 'fi;'
Andrew Baraniuk5da5c582019-06-20 12:12:45 +0300318 'chmod +x /usr/sbin/ntpd'
Dennis Dmitriev427e4152019-05-08 15:12:43 +0300319 'service ntp start;'
Andrew Baraniuk5da5c582019-06-20 12:12:45 +0300320 'sleep 3; ntpq -pn;')
Dmitry Tyzhnenko80ce0202019-02-07 13:27:19 +0200321 self.run_state(
322 tgt,
Dennis Dmitrievfa1774a2019-05-28 15:27:44 +0300323 'cmd.run', cmd, timeout=360) # noqa
Dennis Dmitrievb8115f52017-12-15 13:09:56 +0200324 new_time_res = self.run_state(tgt, 'cmd.run', 'date')
325 for node_name, time in sorted(new_time_res[0]['return'][0].items()):
326 LOG.info("{0}: {1}".format(node_name, time))
327 self.__api = None
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300328
329 def create_env_salt(self):
330 """Creates static utils/env_salt file"""
331
332 env_salt_filename = pkg_resources.resource_filename(
333 settings.__name__, 'utils/env_salt')
334 with open(env_salt_filename, 'w') as f:
335 f.write(
336 'export SALT_MASTER_IP={host}\n'
337 'export SALTAPI_URL=http://{host}:{port}/\n'
338 'export SALTAPI_USER="{user}"\n'
339 'export SALTAPI_PASS="{password}"\n'
340 'export SALTAPI_EAUTH="pam"\n'
341 'echo "export SALT_MASTER_IP=${{SALT_MASTER_IP}}"\n'
342 'echo "export SALTAPI_URL=${{SALTAPI_URL}}"\n'
343 'echo "export SALTAPI_USER=${{SALTAPI_USER}}"\n'
344 'echo "export SALTAPI_PASS=${{SALTAPI_PASS}}"\n'
345 'echo "export SALTAPI_EAUTH=${{SALTAPI_EAUTH}}"\n'
346 .format(host=self.host, port=self.port,
347 user=self.__user, password=self.__password)
348 )
349
350 def create_env_jenkins_day01(self):
351 """Creates static utils/env_jenkins_day01 file"""
352
353 env_jenkins_day01_filename = pkg_resources.resource_filename(
354 settings.__name__, 'utils/env_jenkins_day01')
355
356 tgt = 'I@docker:client:stack:jenkins and cfg01*'
357 jenkins_params = self.get_single_pillar(
358 tgt=tgt, pillar="jenkins:client:master")
obutenkoca858402019-07-04 18:31:39 +0300359 jenkins_host = jenkins_params.get('host')
360 jenkins_port = jenkins_params.get('port')
361 jenkins_protocol = jenkins_params.get('proto', 'http')
362 jenkins_user = jenkins_params.get('username', 'admin')
363 jenkins_pass = jenkins_params.get('password')
364
365 if not all([jenkins_host,
366 jenkins_port,
367 jenkins_protocol,
368 jenkins_user,
369 jenkins_pass]):
370 raise LookupError(
371 "Some of the required parameters for Jenkins not set in the "
372 "pillar jenkins:client:master on {0}: {1}"
373 .format(tgt, jenkins_params))
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300374
375 with open(env_jenkins_day01_filename, 'w') as f:
376 f.write(
obutenkoca858402019-07-04 18:31:39 +0300377 'export JENKINS_URL={protocol}://{host}:{port}\n'
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300378 'export JENKINS_USER={user}\n'
379 'export JENKINS_PASS={password}\n'
380 'export JENKINS_START_TIMEOUT=60\n'
381 'export JENKINS_BUILD_TIMEOUT=1800\n'
382 'echo "export JENKINS_URL=${{JENKINS_URL}}'
383 ' # Jenkins API URL"\n'
384 'echo "export JENKINS_USER=${{JENKINS_USER}}'
385 ' # Jenkins API username"\n'
386 'echo "export JENKINS_PASS=${{JENKINS_PASS}}'
387 ' # Jenkins API password or token"n\n'
388 'echo "export JENKINS_START_TIMEOUT=${{JENKINS_START_TIMEOUT}}'
389 ' # Timeout waiting for job in queue to start building"\n'
390 'echo "export JENKINS_BUILD_TIMEOUT=${{JENKINS_BUILD_TIMEOUT}}'
391 ' # Timeout waiting for building job to complete"\n'
obutenkoca858402019-07-04 18:31:39 +0300392 .format(host=jenkins_host, port=jenkins_port,
393 protocol=jenkins_protocol, user=jenkins_user,
394 password=jenkins_pass)
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300395 )
396
397 def create_env_jenkins_cicd(self):
398 """Creates static utils/env_jenkins_cicd file"""
399
400 env_jenkins_cicd_filename = pkg_resources.resource_filename(
401 settings.__name__, 'utils/env_jenkins_cicd')
Oleksii Butenko3b3bab12019-05-23 17:30:15 +0300402
403 tgt = 'I@docker:client:stack:jenkins and cid01*'
404 try:
405 jenkins_params = self.get_single_pillar(
406 tgt=tgt, pillar="jenkins:client:master")
407 except LookupError as e:
408 LOG.error("Skipping creation {0} because cannot get Jenkins CICD "
409 "parameters from '{1}': {2}"
410 .format(env_jenkins_cicd_filename, tgt, e.message))
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300411 return
Oleksii Butenko3b3bab12019-05-23 17:30:15 +0300412
obutenkoca858402019-07-04 18:31:39 +0300413 jenkins_host = jenkins_params.get('host')
414 jenkins_port = jenkins_params.get('port')
415 jenkins_protocol = jenkins_params.get('proto', 'http')
416 jenkins_user = jenkins_params.get('username', 'admin')
417 jenkins_pass = jenkins_params.get('password')
418
419 if not all([jenkins_host,
420 jenkins_port,
421 jenkins_protocol,
422 jenkins_user,
423 jenkins_pass]):
424 raise LookupError(
425 "Some of the required parameters for Jenkins not set in the "
426 "pillar jenkins:client:master on {0}: {1}"
427 .format(tgt, jenkins_params))
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300428
429 with open(env_jenkins_cicd_filename, 'w') as f:
430 f.write(
obutenkoca858402019-07-04 18:31:39 +0300431 'export JENKINS_URL={protocol}://{host}:{port}\n'
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300432 'export JENKINS_USER={user}\n'
433 'export JENKINS_PASS={password}\n'
434 'export JENKINS_START_TIMEOUT=60\n'
435 'export JENKINS_BUILD_TIMEOUT=1800\n'
436 'echo "export JENKINS_URL=${{JENKINS_URL}}'
437 ' # Jenkins API URL"\n'
438 'echo "export JENKINS_USER=${{JENKINS_USER}}'
439 ' # Jenkins API username"\n'
440 'echo "export JENKINS_PASS=${{JENKINS_PASS}}'
441 ' # Jenkins API password or token"n\n'
442 'echo "export JENKINS_START_TIMEOUT=${{JENKINS_START_TIMEOUT}}'
443 ' # Timeout waiting for job in queue to start building"\n'
444 'echo "export JENKINS_BUILD_TIMEOUT=${{JENKINS_BUILD_TIMEOUT}}'
445 ' # Timeout waiting for building job to complete"\n'
446 .format(host=jenkins_host, port=jenkins_port,
obutenkoca858402019-07-04 18:31:39 +0300447 protocol=jenkins_protocol, user=jenkins_user,
448 password=jenkins_pass)
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300449 )
450
451 def create_env_k8s(self):
452 """Creates static utils/env_k8s file"""
453
454 env_k8s_filename = pkg_resources.resource_filename(
455 settings.__name__, 'utils/env_k8s')
Oleksii Butenko3b3bab12019-05-23 17:30:15 +0300456
457 tgt = 'I@haproxy:proxy:enabled:true and I@kubernetes:master and *01*'
458 try:
459 haproxy_params = self.get_single_pillar(
460 tgt=tgt, pillar="haproxy:proxy:listen:k8s_secure:binds")[0]
461 k8s_params = self.get_single_pillar(
462 tgt=tgt, pillar="kubernetes:master:admin")
463 except LookupError as e:
464 LOG.error("Skipping creation {0} because cannot get Kubernetes "
465 "parameters from '{1}': {2}"
466 .format(env_k8s_filename, tgt, e.message))
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300467 return
Oleksii Butenko3b3bab12019-05-23 17:30:15 +0300468
Dennis Dmitrievad5f8582019-04-12 13:15:08 +0300469 kube_host = haproxy_params['address']
470 kube_apiserver_port = haproxy_params['port']
471 kubernetes_admin_user = k8s_params['username']
472 kubernetes_admin_password = k8s_params['password']
473
474 with open(env_k8s_filename, 'w') as f:
475 f.write(
476 'export kube_host={host}\n'
477 'export kube_apiserver_port={port}\n'
478 'export kubernetes_admin_user={user}\n'
479 'export kubernetes_admin_password={password}\n'
480 'echo "export kube_host=${{kube_host}}'
481 ' # Kube API host"\n'
482 'echo "export kube_apiserver_port=${{kube_apiserver_port}}'
483 ' # Kube API port"\n'
484 'echo "export kubernetes_admin_user=${{kubernetes_admin_user}}'
485 ' # Kube API username"\n'
486 'echo "export kubernetes_admin_password='
487 '${{kubernetes_admin_password}} # Kube API password"n\n'
488 .format(host=kube_host, port=kube_apiserver_port,
489 user=kubernetes_admin_user,
490 password=kubernetes_admin_password)
491 )