-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathbuildkit.ts
401 lines (354 loc) · 11.4 KB
/
buildkit.ts
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/*
* Copyright (C) 2018-2022 Garden Technologies, Inc. <[email protected]>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import AsyncLock from "async-lock"
import chalk from "chalk"
import split2 = require("split2")
import { isEmpty } from "lodash"
import { buildSyncVolumeName, dockerAuthSecretKey } from "../../constants"
import { KubeApi } from "../../api"
import { KubernetesDeployment } from "../../types"
import { LogEntry } from "../../../../logger/log-entry"
import { waitForResources, compareDeployedResources } from "../../status/status"
import { KubernetesProvider, KubernetesPluginContext } from "../../config"
import { PluginContext } from "../../../../plugin-context"
import {
BuildStatusHandler,
skopeoBuildStatus,
BuildHandler,
syncToBuildSync,
getSocatContainer,
getUtilContainer,
utilRsyncPort,
ensureBuilderSecret,
builderToleration,
} from "./common"
import { getNamespaceStatus } from "../../namespace"
import { LogLevel } from "../../../../logger/logger"
import { renderOutputStream, sleep } from "../../../../util/util"
import { ContainerModule } from "../../../container/config"
import { getDockerBuildArgs } from "../../../container/build"
import { getRunningDeploymentPod, millicpuToString, megabytesToString, usingInClusterRegistry } from "../../util"
import { PodRunner } from "../../run"
import { prepareSecrets } from "../../secrets"
export const buildkitImageName = "gardendev/buildkit:v0.9.3-1"
export const buildkitDeploymentName = "garden-buildkit"
const buildkitContainerName = "buildkitd"
const deployLock = new AsyncLock()
export const getBuildkitBuildStatus: BuildStatusHandler = async (params) => {
const { ctx, module, log } = params
const k8sCtx = ctx as KubernetesPluginContext
const provider = k8sCtx.provider
const api = await KubeApi.factory(log, ctx, provider)
const namespace = (await getNamespaceStatus({ log, ctx, provider })).namespaceName
const { authSecret } = await ensureBuildkit({
ctx,
provider,
log,
api,
namespace,
})
return skopeoBuildStatus({
namespace,
deploymentName: buildkitDeploymentName,
containerName: getUtilContainer(authSecret.metadata.name).name,
log,
api,
ctx,
provider,
module,
})
}
export const buildkitBuildHandler: BuildHandler = async (params) => {
const { ctx, module, log } = params
const provider = <KubernetesProvider>ctx.provider
const api = await KubeApi.factory(log, ctx, provider)
const namespace = (await getNamespaceStatus({ log, ctx, provider })).namespaceName
await ensureBuildkit({
ctx,
provider,
log,
api,
namespace,
})
const localId = module.outputs["local-image-id"]
const deploymentImageName = module.outputs["deployment-image-name"]
const deploymentImageId = module.outputs["deployment-image-id"]
const dockerfile = module.spec.dockerfile || "Dockerfile"
const { contextPath } = await syncToBuildSync({
...params,
ctx: ctx as KubernetesPluginContext,
api,
namespace,
deploymentName: buildkitDeploymentName,
rsyncPort: utilRsyncPort,
})
log.setState(`Building image ${localId}...`)
let buildLog = ""
// Stream verbose logs to a status line
const outputStream = split2()
const statusLine = log.placeholder({ level: LogLevel.verbose })
outputStream.on("error", () => {})
outputStream.on("data", (line: Buffer) => {
ctx.events.emit("log", { timestamp: new Date().getTime(), data: line })
statusLine.setState(renderOutputStream(line.toString()))
})
const cacheTag = "_buildcache"
// Prepare the build command (this thing, while an otherwise excellent piece of software, is clearly is not meant for
// everyday human usage)
let outputSpec = `type=image,"name=${deploymentImageId},${deploymentImageName}:${cacheTag}",push=true`
if (usingInClusterRegistry(provider)) {
// The in-cluster registry is not exposed, so we don't configure TLS on it.
outputSpec += ",registry.insecure=true"
}
const command = [
"buildctl",
"build",
"--frontend=dockerfile.v0",
"--local",
"context=" + contextPath,
"--local",
"dockerfile=" + contextPath,
"--opt",
"filename=" + dockerfile,
"--output",
outputSpec,
"--export-cache",
"type=inline",
"--import-cache",
`type=registry,ref=${deploymentImageName}:${cacheTag}`,
...getBuildkitFlags(module),
]
// Execute the build
const buildTimeout = module.spec.build.timeout
const pod = await getRunningDeploymentPod({ api, deploymentName: buildkitDeploymentName, namespace })
const runner = new PodRunner({
api,
ctx,
provider,
namespace,
pod,
})
const buildRes = await runner.exec({
log,
command,
timeoutSec: buildTimeout,
containerName: buildkitContainerName,
stdout: outputStream,
stderr: outputStream,
buffer: true,
})
buildLog = buildRes.log
log.silly(buildLog)
return {
buildLog,
fetched: false,
fresh: true,
version: module.version.versionString,
}
}
export async function ensureBuildkit({
ctx,
provider,
log,
api,
namespace,
}: {
ctx: PluginContext
provider: KubernetesProvider
log: LogEntry
api: KubeApi
namespace: string
}) {
return deployLock.acquire(namespace, async () => {
const deployLog = log.placeholder()
// Make sure auth secret is in place
const { authSecret, updated: secretUpdated } = await ensureBuilderSecret({
provider,
log,
api,
namespace,
})
const imagePullSecrets = await prepareSecrets({ api, namespace, secrets: provider.config.imagePullSecrets, log })
// Check status of the buildkit deployment
const manifest = getBuildkitDeployment(provider, authSecret.metadata.name, imagePullSecrets)
const status = await compareDeployedResources(ctx as KubernetesPluginContext, api, namespace, [manifest], deployLog)
if (status.state === "ready") {
// Need to wait a little to ensure the secret is updated in the deployment
if (secretUpdated) {
await sleep(1000)
}
return { authSecret, updated: false }
}
// Deploy the buildkit daemon
deployLog.setState(
chalk.gray(`-> Deploying ${buildkitDeploymentName} daemon in ${namespace} namespace (was ${status.state})`)
)
await api.upsert({ kind: "Deployment", namespace, log: deployLog, obj: manifest })
await waitForResources({
namespace,
ctx,
provider,
serviceName: "garden-buildkit",
resources: [manifest],
log: deployLog,
timeoutSec: 600,
})
deployLog.setState({ append: true, msg: "Done!" })
return { authSecret, updated: true }
})
}
export function getBuildkitFlags(module: ContainerModule) {
const args: string[] = []
for (const arg of getDockerBuildArgs(module)) {
args.push("--opt", "build-arg:" + arg)
}
if (module.spec.build.targetImage) {
args.push("--opt", "target=" + module.spec.build.targetImage)
}
args.push(...(module.spec.extraFlags || []))
return args
}
export function getBuildkitDeployment(
provider: KubernetesProvider,
authSecretName: string,
imagePullSecrets: { name: string }[]
) {
const deployment: KubernetesDeployment = {
apiVersion: "apps/v1",
kind: "Deployment",
metadata: {
labels: {
app: buildkitDeploymentName,
},
name: buildkitDeploymentName,
},
spec: {
replicas: 1,
selector: {
matchLabels: {
app: buildkitDeploymentName,
},
},
template: {
metadata: {
labels: {
app: buildkitDeploymentName,
},
},
spec: {
containers: [
{
name: buildkitContainerName,
image: buildkitImageName,
args: ["--addr", "unix:///run/buildkit/buildkitd.sock"],
readinessProbe: {
exec: {
command: ["buildctl", "debug", "workers"],
},
initialDelaySeconds: 3,
periodSeconds: 5,
},
livenessProbe: {
exec: {
command: ["buildctl", "debug", "workers"],
},
initialDelaySeconds: 5,
periodSeconds: 30,
},
securityContext: {
privileged: true,
},
volumeMounts: [
{
name: authSecretName,
mountPath: "/.docker",
readOnly: true,
},
{
name: buildSyncVolumeName,
mountPath: "/garden-build",
},
],
env: [
{
name: "DOCKER_CONFIG",
value: "/.docker",
},
],
},
// Attach a util container for the rsync server and to use skopeo
getUtilContainer(authSecretName),
],
imagePullSecrets,
volumes: [
{
name: authSecretName,
secret: {
secretName: authSecretName,
items: [
{
key: dockerAuthSecretKey,
path: "config.json",
},
],
},
},
{
name: buildSyncVolumeName,
emptyDir: {},
},
],
tolerations: [builderToleration],
},
},
},
}
const buildkitContainer = deployment.spec!.template.spec!.containers[0]
// Optionally run buildkit in rootless mode
if (!!provider.config.clusterBuildkit?.rootless) {
deployment.spec!.template.metadata!.annotations = {
"container.apparmor.security.beta.kubernetes.io/buildkitd": "unconfined",
"container.seccomp.security.alpha.kubernetes.io/buildkitd": "unconfined",
}
buildkitContainer.image += "-rootless"
buildkitContainer.args = [
"--addr",
"unix:///run/user/1000/buildkit/buildkitd.sock",
"--oci-worker-no-process-sandbox",
]
buildkitContainer.securityContext = {
runAsUser: 1000,
runAsGroup: 1000,
}
}
buildkitContainer.resources = {
limits: {
cpu: millicpuToString(provider.config.resources.builder.limits.cpu),
memory: megabytesToString(provider.config.resources.builder.limits.memory),
...(provider.config.resources.builder.limits.ephemeralStorage
? { "ephemeral-storage": megabytesToString(provider.config.resources.builder.limits.ephemeralStorage) }
: {}),
},
requests: {
cpu: millicpuToString(provider.config.resources.builder.requests.cpu),
memory: megabytesToString(provider.config.resources.builder.requests.memory),
...(provider.config.resources.builder.requests.ephemeralStorage
? { "ephemeral-storage": megabytesToString(provider.config.resources.builder.requests.ephemeralStorage) }
: {}),
},
}
if (usingInClusterRegistry(provider)) {
// We need a proxy sidecar to be able to reach the in-cluster registry from the Pod
deployment.spec!.template.spec!.containers.push(getSocatContainer(provider))
}
// Set the configured nodeSelector, if any
if (!isEmpty(provider.config.clusterBuildkit?.nodeSelector)) {
deployment.spec!.template.spec!.nodeSelector = provider.config.clusterBuildkit?.nodeSelector
}
return deployment
}