Add upgrade support for Horizon
[apex-tripleo-heat-templates.git] / docker / docker-puppet.py
1 #!/usr/bin/env python
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
15 # Shell script tool to run puppet inside of the given docker container image.
16 # Uses the config file at /var/lib/docker-puppet/docker-puppet.json as a source for a JSON
17 # array of [config_volume, puppet_tags, manifest, config_image, [volumes]] settings
18 # that can be used to generate config files or run ad-hoc puppet modules
19 # inside of a container.
20
21 import json
22 import os
23 import subprocess
24 import sys
25 import tempfile
26 import multiprocessing
27
28
29 # this is to match what we do in deployed-server
30 def short_hostname():
31     subproc = subprocess.Popen(['hostname', '-s'],
32                                stdout=subprocess.PIPE,
33                                stderr=subprocess.PIPE)
34     cmd_stdout, cmd_stderr = subproc.communicate()
35     return cmd_stdout.rstrip()
36
37
38 def pull_image(name):
39     print('Pulling image: %s' % name)
40     subproc = subprocess.Popen(['/usr/bin/docker', 'pull', name],
41                                stdout=subprocess.PIPE,
42                                stderr=subprocess.PIPE)
43     cmd_stdout, cmd_stderr = subproc.communicate()
44     print(cmd_stdout)
45     print(cmd_stderr)
46
47
48 def rm_container(name):
49     if os.environ.get('SHOW_DIFF', None):
50         print('Diffing container: %s' % name)
51         subproc = subprocess.Popen(['/usr/bin/docker', 'diff', name],
52                                    stdout=subprocess.PIPE,
53                                    stderr=subprocess.PIPE)
54         cmd_stdout, cmd_stderr = subproc.communicate()
55         print(cmd_stdout)
56         print(cmd_stderr)
57
58     print('Removing container: %s' % name)
59     subproc = subprocess.Popen(['/usr/bin/docker', 'rm', name],
60                                stdout=subprocess.PIPE,
61                                stderr=subprocess.PIPE)
62     cmd_stdout, cmd_stderr = subproc.communicate()
63     print(cmd_stdout)
64     print(cmd_stderr)
65
66 process_count = int(os.environ.get('PROCESS_COUNT',
67                                    multiprocessing.cpu_count()))
68
69 config_file = os.environ.get('CONFIG', '/var/lib/docker-puppet/docker-puppet.json')
70 print('docker-puppet')
71 print('CONFIG: %s' % config_file)
72 with open(config_file) as f:
73     json_data = json.load(f)
74
75 # To save time we support configuring 'shared' services at the same
76 # time. For example configuring all of the heat services
77 # in a single container pass makes sense and will save some time.
78 # To support this we merge shared settings together here.
79 #
80 # We key off of config_volume as this should be the same for a
81 # given group of services.  We are also now specifying the container
82 # in which the services should be configured.  This should match
83 # in all instances where the volume name is also the same.
84
85 configs = {}
86
87 for service in (json_data or []):
88     if service is None:
89         continue
90     config_volume = service[0] or ''
91     puppet_tags = service[1] or ''
92     manifest = service[2] or ''
93     config_image = service[3] or ''
94     volumes = service[4] if len(service) > 4 else []
95
96     print('---------')
97     print('config_volume %s' % config_volume)
98     print('puppet_tags %s' % puppet_tags)
99     print('manifest %s' % manifest)
100     print('config_image %s' % config_image)
101     print('volumes %s' % volumes)
102     # We key off of config volume for all configs.
103     if config_volume in configs:
104         # Append puppet tags and manifest.
105         print("Existing service, appending puppet tags and manifest\n")
106         if puppet_tags:
107             configs[config_volume][1] = '%s,%s' % (configs[config_volume][1],
108                                                    puppet_tags)
109         if manifest:
110             configs[config_volume][2] = '%s\n%s' % (configs[config_volume][2],
111                                                     manifest)
112         if configs[config_volume][3] != config_image:
113             print("WARNING: Config containers do not match even though"
114                   " shared volumes are the same!\n")
115     else:
116         print("Adding new service\n")
117         configs[config_volume] = service
118
119 print('Service compilation completed.\n')
120
121 def mp_puppet_config((config_volume, puppet_tags, manifest, config_image, volumes)):
122
123     print('---------')
124     print('config_volume %s' % config_volume)
125     print('puppet_tags %s' % puppet_tags)
126     print('manifest %s' % manifest)
127     print('config_image %s' % config_image)
128     print('volumes %s' % volumes)
129     hostname = short_hostname()
130     sh_script = '/var/lib/docker-puppet/docker-puppet-%s.sh' % config_volume
131
132     with open(sh_script, 'w') as script_file:
133         os.chmod(script_file.name, 0755)
134         script_file.write("""#!/bin/bash
135         set -ex
136         mkdir -p /etc/puppet
137         cp -a /tmp/puppet-etc/* /etc/puppet
138         rm -Rf /etc/puppet/ssl # not in use and causes permission errors
139         echo '{"step": %(step)s}' > /etc/puppet/hieradata/docker.json
140         TAGS=""
141         if [ -n "%(puppet_tags)s" ]; then
142             TAGS='--tags "%(puppet_tags)s"'
143         fi
144         FACTER_hostname=%(hostname)s FACTER_uuid=docker /usr/bin/puppet apply --verbose $TAGS /etc/config.pp
145
146         # Disables archiving
147         if [ -z "%(no_archive)s" ]; then
148             rm -Rf /var/lib/config-data/%(name)s
149
150             # copying etc should be enough for most services
151             mkdir -p /var/lib/config-data/%(name)s/etc
152             cp -a /etc/* /var/lib/config-data/%(name)s/etc/
153
154             if [ -d /root/ ]; then
155               cp -a /root/ /var/lib/config-data/%(name)s/root/
156             fi
157             if [ -d /var/lib/ironic/tftpboot/ ]; then
158               mkdir -p /var/lib/config-data/%(name)s/var/lib/ironic/
159               cp -a /var/lib/ironic/tftpboot/ /var/lib/config-data/%(name)s/var/lib/ironic/tftpboot/
160             fi
161             if [ -d /var/lib/ironic/httpboot/ ]; then
162               mkdir -p /var/lib/config-data/%(name)s/var/lib/ironic/
163               cp -a /var/lib/ironic/httpboot/ /var/lib/config-data/%(name)s/var/lib/ironic/httpboot/
164             fi
165
166             # apache services may files placed in /var/www/
167             if [ -d /var/www/ ]; then
168              mkdir -p /var/lib/config-data/%(name)s/var/www
169              cp -a /var/www/* /var/lib/config-data/%(name)s/var/www/
170             fi
171         fi
172         """ % {'puppet_tags': puppet_tags, 'name': config_volume,
173                'hostname': hostname,
174                'no_archive': os.environ.get('NO_ARCHIVE', ''),
175                'step': os.environ.get('STEP', '6')})
176
177     with tempfile.NamedTemporaryFile() as tmp_man:
178         with open(tmp_man.name, 'w') as man_file:
179             man_file.write('include ::tripleo::packages\n')
180             man_file.write(manifest)
181
182         rm_container('docker-puppet-%s' % config_volume)
183         pull_image(config_image)
184
185         dcmd = ['/usr/bin/docker', 'run',
186                 '--user', 'root',
187                 '--name', 'docker-puppet-%s' % config_volume,
188                 '--volume', '%s:/etc/config.pp:ro' % tmp_man.name,
189                 '--volume', '/etc/puppet/:/tmp/puppet-etc/:ro',
190                 '--volume', '/usr/share/openstack-puppet/modules/:/usr/share/openstack-puppet/modules/:ro',
191                 '--volume', '/var/lib/config-data/:/var/lib/config-data/:rw',
192                 '--volume', 'tripleo_logs:/var/log/tripleo/',
193                 '--volume', '%s:%s:rw' % (sh_script, sh_script) ]
194
195         for volume in volumes:
196             dcmd.extend(['--volume', volume])
197
198         dcmd.extend(['--entrypoint', sh_script])
199
200         env = {}
201         if os.environ.get('NET_HOST', 'false') == 'true':
202             print('NET_HOST enabled')
203             dcmd.extend(['--net', 'host', '--volume',
204                          '/etc/hosts:/etc/hosts:ro'])
205         dcmd.append(config_image)
206
207         subproc = subprocess.Popen(dcmd, stdout=subprocess.PIPE,
208                                    stderr=subprocess.PIPE, env=env)
209         cmd_stdout, cmd_stderr = subproc.communicate()
210         print(cmd_stdout)
211         print(cmd_stderr)
212         if subproc.returncode != 0:
213             print('Failed running docker-puppet.py for %s' % config_volume)
214         rm_container('docker-puppet-%s' % config_volume)
215         return subproc.returncode
216
217 # Holds all the information for each process to consume.
218 # Instead of starting them all linearly we run them using a process
219 # pool.  This creates a list of arguments for the above function
220 # to consume.
221 process_map = []
222
223 for config_volume in configs:
224
225     service = configs[config_volume]
226     puppet_tags = service[1] or ''
227     manifest = service[2] or ''
228     config_image = service[3] or ''
229     volumes = service[4] if len(service) > 4 else []
230
231     if puppet_tags:
232         puppet_tags = "file,file_line,concat,%s" % puppet_tags
233     else:
234         puppet_tags = "file,file_line,concat"
235
236     process_map.append([config_volume, puppet_tags, manifest, config_image, volumes])
237
238 for p in process_map:
239     print '--\n%s' % p
240
241 # Fire off processes to perform each configuration.  Defaults
242 # to the number of CPUs on the system.
243 p = multiprocessing.Pool(process_count)
244 p.map(mp_puppet_config, process_map)