-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.py
executable file
·152 lines (129 loc) · 4.08 KB
/
build.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
#!/usr/bin/python3
import os
import argparse
import subprocess
def last_git_modified(path, n=1):
return (
subprocess.check_output(
["git", "log", "-n", str(n), "--pretty=format:%h", path]
)
.decode("utf-8")
.split("\n")[-1]
)
def image_touched(image, commit_range):
return (
subprocess.check_output(
[
"git",
"diff",
"--name-only",
commit_range,
os.path.join("images", image),
]
)
.decode("utf-8")
.strip()
!= ""
)
def build_images(prefix, images, commit_range=None, push=False):
for image in images:
if commit_range:
if not image_touched(image, commit_range):
print(
"Skipping {}, not touched in {}".format(image, commit_range)
)
continue
# Pull last available version of image to maximize cache use
try_count = 0
while try_count < 50:
last_image_tag = last_git_modified(
os.path.join("images", image), try_count + 2
)
last_image_spec = "{}{}:{}".format(prefix, image, last_image_tag)
try:
subprocess.check_call(["docker", "pull", last_image_spec])
break
except subprocess.CalledProcessError:
try_count += 1
pass
image_path = os.path.join("images", image)
tag = last_git_modified(image_path)
image_spec = "{}{}:{}".format(prefix, image, tag)
subprocess.check_call(
[
"docker",
"build",
"-t",
image_spec,
"--cache-from",
last_image_spec,
image_path,
]
)
if push:
subprocess.check_call(["docker", "push", image_spec])
def deploy(prefix, images, release, install):
image_map = {
"paws-hub": "jupyterhub.hub.image",
"singleuser": "jupyterhub.singleuser.image",
}
args = []
# Set up helm!
subprocess.check_call(["helm", "init", "--client-only"])
subprocess.check_call(
[
"helm",
"repo",
"add",
"jupyterhub",
"https://jupyterhub.github.io/helm-chart",
]
)
subprocess.check_call(["helm", "dep", "up"], cwd="paws")
for image in images:
image_path = os.path.join("images", image)
image_name = prefix + image
tag = last_git_modified(image_path)
args.append("--set={}.name={}".format(image_map[image], image_name))
args.append("--set={}.tag={}".format(image_map[image], tag))
if install:
helm = [
"helm",
"install",
"--name",
release,
"--namespace",
release,
"paws/",
"-f",
"paws/secrets.yaml",
]
else:
helm = ["helm", "upgrade", release, "paws/", "-f", "paws/secrets.yaml"]
subprocess.check_call(helm + args)
def main():
argparser = argparse.ArgumentParser()
argparser.add_argument(
"--image-prefix", default="quay.io/wikimedia-paws-prod/"
)
subparsers = argparser.add_subparsers(dest="action")
build_parser = subparsers.add_parser(
"build", description="Build & Push images"
)
build_parser.add_argument(
"--commit-range",
help="Range of commits to consider when building images",
)
build_parser.add_argument("--push", action="store_true")
deploy_parser = subparsers.add_parser(
"deploy", description="Deploy with helm"
)
deploy_parser.add_argument("release", default="prod")
deploy_parser.add_argument("--install", action="store_true")
args = argparser.parse_args()
images = ["paws-hub", "singleuser"]
if args.action == "build":
build_images(args.image_prefix, images, args.commit_range, args.push)
else:
deploy(args.image_prefix, images, args.release, args.install)
main()