-
Notifications
You must be signed in to change notification settings - Fork 16
/
zetup.py
268 lines (208 loc) · 9.92 KB
/
zetup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# Copyright 2018 Iguazio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# !! For Iguazio internal usage only !! #
import os
import simplejson
import tempfile
import uuid
from twisted.internet import defer
import ziggy.utils
import ziggy.fs
import ziggy.docker
import ziggy.tasks
import ziggy.shell
def hook_on_module_load(project):
base_path = os.path.join(project.config['workspace_path'], project.config['root_projects']['flex-fuse']['path'])
flex_fuse_config = dict()
flex_fuse_config['repositories'] = {
'flex-fuse': project.config['root_projects']['flex-fuse']
}
flex_fuse_config['base_path'] = base_path
flex_fuse_config['flex_fuse_path'] = os.path.join(base_path, 'flex-fuse')
flex_fuse_config['zetup_path'] = os.path.join(flex_fuse_config['flex_fuse_path'], 'zetup.py')
flex_fuse_config['zetup_md5'] = ziggy.fs.calculate_file_md5(project.ctx, flex_fuse_config['zetup_path'])
project.config['flex-fuse'] = flex_fuse_config
@defer.inlineCallbacks
def task_clone(project):
yield ziggy.tasks.clone(project,
repositories=project.config['flex-fuse']['repositories'],
base_path=project.config['flex-fuse']['base_path'])
@defer.inlineCallbacks
def task_wait_all_projects_updated(project):
yield ziggy.tasks.wait_all_projects_updated(project)
@defer.inlineCallbacks
def task_declare_project_updated(project, zetup_path, old_zetup_md5):
yield ziggy.tasks.declare_project_updated(project, zetup_path, old_zetup_md5)
@defer.inlineCallbacks
def task_update_sources(project):
yield ziggy.tasks.update_sources(project,
repositories=project.config['flex-fuse']['repositories'],
base_path=project.config['flex-fuse']['base_path'])
@defer.inlineCallbacks
def task_load_snapshot(project, repo_merges=None):
yield ziggy.tasks.load_snapshot(project,
project_path=project.config['root_projects']['flex-fuse']['path'],
base_path=project.config['flex-fuse']['base_path'],
repo_merges=repo_merges)
@defer.inlineCallbacks
def task_take_snapshot(project, filter=None):
yield ziggy.tasks.take_snapshot(project,
repositories=project.config['flex-fuse']['repositories'].keys(),
project_path=project.config['root_projects']['flex-fuse']['path'],
base_path=project.config['flex-fuse']['base_path'],
filter=filter)
@defer.inlineCallbacks
def task_verify_zetup_unchanged(project):
yield ziggy.tasks.wait_workspace_updated(project,
project.config['flex-fuse']['zetup_path'],
project.config['flex-fuse']['zetup_md5'])
@defer.inlineCallbacks
def task_build_images(project, version, mirror=None, nas_deployed_artifacts_path='/mnt/nas'):
"""
Internal build function
"""
project.logger.info('Building',
version=version,
mirror=mirror,
nas_deployed_artifacts_path=nas_deployed_artifacts_path)
cwd = project.config['flex-fuse']['flex_fuse_path']
cmd = 'make release'
env = os.environ.copy()
env['FETCH_METHOD'] = 'download'
env['MIRROR'] = mirror
env['IGUAZIO_VERSION'] = version
env['SRC_BINARY_NAME'] = 'igz-fuse'
env['DST_BINARY_NAME'] = 'igz-fuse'
if not mirror:
env['FETCH_METHOD'] = 'copy'
env['MIRROR'] = os.path.join(nas_deployed_artifacts_path, 'zeek_resources/zeek-packages')
project.logger.debug('Building a release candidate', cwd=cwd, cmd=cmd, env=env)
out, _, _ = yield ziggy.shell.run(project.ctx, 'make release', cwd=cwd, env=env)
project.logger.info('Build images task is done', out=out)
@defer.inlineCallbacks
def task_push_images(project, repository, tag, pushed_images_file_path):
"""
Internal publish function
"""
project.logger.info('Pushing images',
repository=repository,
tag=tag,
pushed_images_file_path=pushed_images_file_path)
cwd = project.config['flex-fuse']['flex_fuse_path']
repository = repository.replace(tag, '').rstrip('/')
repository_user = os.path.join('k8s_apps', tag)
docker_image_name = 'flex-fuse:{0}'.format(tag)
remote_docker_image_name = '{0}/{1}/{2}'.format(repository, repository_user, docker_image_name)
cmd = 'docker tag {0} {1}'.format(docker_image_name, remote_docker_image_name)
# Tag
project.logger.debug('Tagging docker image before push',
cwd=cwd,
cmd=cmd,
tag=tag,
docker_image_name=docker_image_name,
remote_docker_image_name=remote_docker_image_name)
yield ziggy.shell.run(project.ctx, cmd, cwd=cwd)
# Push
cmd = 'docker push {0}'.format(remote_docker_image_name)
project.logger.debug('Pushing docker image to repository',
cwd=cwd,
cmd=cmd,
remote_docker_image_name=remote_docker_image_name)
yield ziggy.shell.run(project.ctx, cmd, cwd=cwd)
project.logger.debug('Writing pushed docker image',
pushed_images_file_path=pushed_images_file_path,
remote_docker_image_name=remote_docker_image_name,
docker_image_name=docker_image_name)
pushed_images = simplejson.dumps([{
'target_image_name': remote_docker_image_name,
'image_name': docker_image_name
}], indent=4)
ziggy.fs.write_file_contents(project.ctx, pushed_images_file_path, pushed_images)
project.logger.info('Push images task is done', pushed_images=pushed_images)
@defer.inlineCallbacks
def task_project_build(project, output_dir='flex_fuse_resources', tag='igz',
mirror=None, nas_deployed_artifacts_path='/mnt/nas'):
project.ctx.info('Building', output_dir=output_dir, tag=tag)
save_images_dir = os.path.join(output_dir, 'k8s_apps')
yield ziggy.fs.mkdir(project.ctx, save_images_dir, force=True)
tasks_to_run = [
{
'name': 'build_images',
'args': {
'version': tag,
'nas_deployed_artifacts_path': nas_deployed_artifacts_path,
'mirror': mirror,
},
},
{
'name': 'push_images',
'args': {
'output_filepath': save_images_dir,
'images': ['iguazio/flex-fuse:{}'.format(tag)],
},
},
]
yield project.task_manager.run_tasks(project, tasks_to_run)
project.ctx.info('Finished building',
output_dir=output_dir,
tag=tag,
nas_deployed_artifacts_path=nas_deployed_artifacts_path)
@defer.inlineCallbacks
def task_save_images(project, images, output_filepath=None):
if not output_filepath:
output_filepath = os.path.join(tempfile.gettempdir(), 'flex-fuse-docker-{0}.tar.gz'.format(uuid.uuid4()))
project.logger.debug('no output filepath was given, using a temporary file',
output_filepath=output_filepath)
project.logger.debug('Saving docker images', images=images)
yield ziggy.docker.save_images_separately(project.ctx, images, output_filepath, compress=True)
project.logger.debug('Done saving docker images', output_filepath=output_filepath)
@defer.inlineCallbacks
def task_push_images(project, images, output_filepath=None):
if not output_filepath:
output_filepath = os.path.join(tempfile.gettempdir(), 'flex-fuse-docker-{0}.tar.gz'.format(uuid.uuid4()))
project.logger.debug('no output filepath was given, using a temporary file',
output_filepath=output_filepath)
project.logger.debug('Saving docker images', images=images)
yield ziggy.docker.push_images(project.ctx, images, output_filepath)
project.logger.debug('Done saving docker images', output_filepath=output_filepath)
@defer.inlineCallbacks
def task_upload(project, upload_manifest_filepath, output_dir):
project.ctx.info('Uploading',
upload_manifest_filepath=upload_manifest_filepath,
output_dir=output_dir)
upload_links_content = ziggy.fs.read_file_contents(project.ctx, upload_manifest_filepath)
upload_links = simplejson.loads(upload_links_content)
# we will sync\upload out working dir to each links destination
for link in upload_links:
link['src'] = output_dir
yield ziggy.tasks.upload(project, links=upload_links)
project.ctx.info('Done uploading',
upload_links=upload_links,
output_dir=output_dir)
@defer.inlineCallbacks
def task_workflow(project, skipped_tasks=None):
skipped_tasks = ziggy.utils.as_list(skipped_tasks) or []
# default workflow
workflow_tasks = [
'clone',
'update_sources',
'load_snapshot',
'verify_zetup_unchanged',
'take_snapshot'
]
# remove tasks we want to skip.
workflow_tasks = project.task_manager.normalize_task_semantics(workflow_tasks)
workflow_tasks = [task for task in workflow_tasks if task['name'] not in skipped_tasks]
yield project.task_manager.run_tasks(project, workflow_tasks)