-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdocker-bake.hcl
594 lines (547 loc) · 14.4 KB
/
docker-bake.hcl
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
/*
* OSB_UNIQUEID - Unique Identifier
*
* If provided by the caller, this ID must be unique across all builds. It
* is used to tag immutable images and make them available to external
* users.
*
* If not provided (i.e., an empty string), no such unique tags will be pushed.
*
* A common way to generate this ID is to use UUIDs, or to use the current date
* (e.g., `20210101`).
*
* Note that we strongly recommend external users to access images by digest
* rather than this tag. We mostly use the unique tag to guarantee the image
* stays available in the registry and is not garbage-collected.
*/
variable "OSB_UNIQUEID" {
/*
* XXX: This should be `null` instead of an empty string, but current
* `xbuild+HCL` does not support that.
*/
default = ""
}
/*
* Mirroring
*
* The custom `mirror()` function takes an image name, an image tag, an
* optional tag-suffix, as well as an optional unique suffix. It then produces
* an array of tags for all the configured hosts.
*
* If the unique suffix is not empty, an additional tag with the unique suffix
* is added for each host (replacing the specified suffix). In other words,
* this function concatenates the configured host with the specified image,
* tag, "-" and suffix or unique-suffix. The dash is skipped if the suffix is
* empty.
*/
function "mirror" {
params = [image, tag, suffix, unique]
result = flatten([
for host in [
"ghcr.io/osbuild",
"quay.io/osbuild",
] : concat(
notequal(suffix, "") ?
["${host}/${image}:${tag}-${suffix}"] :
["${host}/${image}:${tag}"],
notequal(unique, "") ?
["${host}/${image}:${tag}-${unique}"] :
[],
)
])
}
/*
* Target Groups
*
* The following section defines some custom target groups, which we use in
* the CI system to rebuild a given set of images.
*
* all-images
* Build all "product" images. That is, all images that are part of
* the project release and thus used by external entities.
*/
group "all-images" {
targets = [
"all-kdc",
"all-koji",
"all-nfsd",
"all-osbuild-ci",
"all-postgres",
"all-rpmrepo-ci",
"all-rpmrepo-snapshot",
"all-cloud-tools",
]
}
/*
* Virtual Base Targets
*
* This section defines virtual base targets, which are shared across the
* different dependent targets.
*/
target "virtual-default" {
context = "."
labels = {
"org.opencontainers.image.source" = "https://github.com/osbuild/containers",
}
}
target "virtual-platforms" {
platforms = [
"linux/amd64",
/*
* The following architectures are possible to build, but are
* currently not used by anyone, so we skip their build. Note
* that they will most likely be built via qemu-user, so this
* is really something to debate for production.
*
* "linux/arm64",
* "linux/ppc64le",
* "linux/s390x",
*/
]
}
/*
* kdc - Kerberos Key Distribution Center
*
* The following groups and targets build the kdc images, a simple way to get
* Kerberos Key Distribution Centers up and running for testing.
*/
group "all-kdc" {
targets = [
"kdc-latest",
]
}
target "virtual-kdc" {
dockerfile = "src/images/kdc.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "kdc-latest" {
inherits = [
"virtual-kdc",
]
tags = concat(
mirror("kdc", "latest", "", OSB_UNIQUEID),
)
platforms = [
"linux/amd64",
"linux/arm64",
]
}
/*
* koji - Koji Build Server
*
* The following groups and targets build the koji images, a simple way to get
* Koji RPM Build Server up and running for testing.
*/
group "all-koji" {
targets = [
"koji-latest",
]
}
target "virtual-koji" {
dockerfile = "src/images/koji.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "koji-latest" {
inherits = [
"virtual-koji",
]
tags = concat(
mirror("koji", "latest", "", OSB_UNIQUEID),
)
platforms = [
"linux/amd64",
"linux/arm64",
]
}
/*
* nfsd - NFS Daemon
*
* The following groups and targets build the nfsd images, a simple
* containerized way to export file-systems via NFS.
*/
group "all-nfsd" {
targets = [
"nfsd-latest",
]
}
target "virtual-nfsd" {
dockerfile = "src/images/nfsd.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "nfsd-latest" {
args = {
OSB_FROM = "docker.io/almalinux/9-init:latest",
}
inherits = [
"virtual-nfsd",
]
tags = concat(
mirror("nfsd", "latest", "", OSB_UNIQUEID),
)
}
/*
* osbuild-ci - OSBuild CI Images
*
* The following groups and targets build the CI images used by osbuild. They
* build on the official fedora and cXs images.
*
* The `osbuild-ci-cXs-latest` images are missing some packages, compared to
* the `osbuild-ci-latest` image, because they are not available in
* the cXs repositories. The intention is to use them only to run unit
* tests in osbuild upstream. The Fedora image should be used for all the
* other tests, such as linters and running unit tests on multiple Python
* versions.
*
* NB: Docker bake HCL does not support definig arrays as a variable or calling
* functions in variable definitions, so we need to duplicate the package list
* in Fedora and cXs targets.
*/
group "all-osbuild-ci" {
targets = [
"osbuild-ci-latest",
"osbuild-ci-c9s-latest",
"osbuild-ci-c10s-latest",
]
}
variable "BASE_PACKAGES" {
default = <<EOF
bash
btrfs-progs
bubblewrap
coreutils
cryptsetup
curl
dnf
dnf-plugins-core
dosfstools
e2fsprogs
erofs-utils
findutils
git
glibc
grub2-pc-modules
grub2-tools
iproute
lvm2
make
nbd
openscap-utils
ostree
pacman
parted
podman
policycoreutils
pylint
python-rpm-macros
python3.6
python3.8
python3.9
python3.10
python3.12
python3.13
python3-autopep8
python3-boto3
python3-botocore
python3-docutils
python3-devel
python3-dnf
python3-iniparse
python3-isort
python3-jsonschema
python3-librepo
python3-libdnf5
python3-mako
python3-mypy
python3-pip
python3-pylint
python3-pytest
python3-pytest-cov
python3-pyyaml
python3-rpm-generators
python3-rpm-macros
qemu-img
qemu-system-x86
rpm
rpm-build
rpm-ostree
rpmdevtools
skopeo
systemd
systemd-boot-unsigned
systemd-container
tar
tox
util-linux
veritysetup
xfsprogs
xorriso
EOF
}
target "virtual-osbuild-ci-base" {
args = {
OSB_DNF_PACKAGES = join(",", split("\n", BASE_PACKAGES)),
OSB_DNF_GROUPS = join(",", [
"development-tools",
"rpm-development-tools",
]),
}
dockerfile = "src/images/osbuild-ci.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "osbuild-ci-latest" {
args = {
OSB_FROM = "registry.fedoraproject.org/fedora:latest",
}
inherits = [
"virtual-osbuild-ci-base",
]
tags = concat(
mirror("osbuild-ci", "latest", "", OSB_UNIQUEID),
)
}
// Packages removed from base cXs image due to being not available or deprecated
variable "CENTOS_REMOVED_PACKAGES" {
default = <<EOF
btrfs-progs
erofs-utils
nbd
nbd-cli
pacman
pylint
python3.6
python3.7
python3.8
python3.9
python3.10
python3.12
python3.13
python3-autopep8
python3-boto3
python3-botocore
python3-docutils
python3-isort
python3-libdnf5
python3-mypy
python3-pylint
python3-pytest
python3-pytest-cov
qemu-system-x86
tox
EOF
}
target "virtual-osbuild-ci-cXs" {
args = {
OSB_DNF_PACKAGES = join(",", setsubtract(split("\n", BASE_PACKAGES), split("\n", CENTOS_REMOVED_PACKAGES))),
OSB_DNF_GROUPS = join(",", [
"development tools",
"rpm-development-tools",
]),
OSB_PIP_PACKAGES = join(",", [
"autopep8",
"boto3",
"botocore",
"docutils",
"isort",
"mypy",
"pylint",
"pytest",
"pytest-cov",
"tox",
]),
OSB_DNF_ALLOW_ERASING = 1,
}
dockerfile = "src/images/osbuild-ci.Dockerfile"
inherits = [
"virtual-osbuild-ci-base",
]
}
target "osbuild-ci-c9s-latest" {
inherits = [
"virtual-osbuild-ci-cXs",
]
args = {
// DNF package list need to be appended for c9s specific packages
OSB_DNF_PACKAGES = format("%s,%s", join(",", setsubtract(split("\n", BASE_PACKAGES), split("\n", CENTOS_REMOVED_PACKAGES))), "python3-tomli")
OSB_FROM = "quay.io/centos/centos:stream9",
}
tags = concat(
mirror("osbuild-ci-c9s", "latest", "", OSB_UNIQUEID),
)
}
target "osbuild-ci-c10s-latest" {
inherits = [
"virtual-osbuild-ci-cXs",
]
args = {
// DNF package list needs no changes so it is inherited
OSB_FROM = "quay.io/centos/centos:stream10-development",
// Allow DNF to downgrade some packages in the container, otherwise it will fail
OSB_DNF_NOBEST = 1,
}
tags = concat(
mirror("osbuild-ci-c10s", "latest", "", OSB_UNIQUEID),
)
}
/*
* postgres - PostgreSQL Mirror
*
* The following groups and targets build the PostgreSQL images. They mostly
* just mirror the official images in our own repositories.
*/
group "all-postgres" {
targets = [
"postgres-13-alpine",
]
}
/*
* Currently postgres is the only image that needs
* arm64. If this changes, so it doesn't use virtual-platforms
*/
target "virtual-postgres" {
dockerfile = "src/images/postgres.Dockerfile"
inherits = [
"virtual-default",
]
platforms = [
"linux/amd64",
"linux/arm64",
]
}
target "postgres-13-alpine" {
inherits = [
"virtual-postgres",
]
tags = concat(
mirror("postgres", "13-alpine", "", OSB_UNIQUEID),
)
}
/*
* cloud-tools - Images with Cloud CLI tools
*
* The following groups and targets build the "cloud tools" images used by
* osbuild-composer CI. They build on the official fedora images.
*/
group "all-cloud-tools" {
targets = [
"cloud-tools-latest",
]
}
target "virtual-cloud-tools" {
args = {
OSB_DNF_PACKAGES = join(",", [
"google-cloud-sdk",
"libxcrypt-compat",
"azure-cli",
"awscli",
"openssh-clients",
]),
}
dockerfile = "src/images/cloud-tools.Dockerfile"
inherits = [
"virtual-default",
]
platforms = [
"linux/amd64",
"linux/arm64",
]
}
target "cloud-tools-latest" {
args = {
OSB_FROM = "docker.io/library/fedora:latest",
}
inherits = [
"virtual-cloud-tools",
]
tags = concat(
mirror("cloud-tools", "latest", "", OSB_UNIQUEID),
)
}
/*
* rpmrepo-ci - RPMrepo CI Images
*
* The following groups and targets build the CI images used by RPMrepo. They
* build on the official fedora images.
*/
group "all-rpmrepo-ci" {
targets = [
"rpmrepo-ci-latest",
]
}
target "virtual-rpmrepo-ci" {
args = {
OSB_DNF_PACKAGES = join(",", [
"python3-boto3",
"python3-botocore",
"python3-pylint",
"python3-pytest",
"python3-requests",
]),
}
dockerfile = "src/images/rpmrepo-ci.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "rpmrepo-ci-latest" {
args = {
OSB_FROM = "docker.io/library/fedora:latest",
}
inherits = [
"virtual-rpmrepo-ci",
]
tags = concat(
mirror("rpmrepo-ci", "latest", "", OSB_UNIQUEID),
)
}
/*
* rpmrepo-snapshot - RPMrepo Snapshot Creation
*
* The following groups and targets build the snapshot images used by RPMrepo.
* They build on the official fedora images.
*/
group "all-rpmrepo-snapshot" {
targets = [
"rpmrepo-snapshot-latest",
]
}
target "virtual-rpmrepo-snapshot" {
args = {
OSB_DNF_PACKAGES = join(",", [
"curl",
"dnf-command(reposync)",
"git",
"jq",
"python3-boto3",
"python3-devel",
]),
}
dockerfile = "src/images/rpmrepo-snapshot.Dockerfile"
inherits = [
"virtual-default",
"virtual-platforms",
]
}
target "rpmrepo-snapshot-latest" {
args = {
OSB_FROM = "docker.io/library/fedora:40",
}
inherits = [
"virtual-rpmrepo-snapshot",
]
tags = concat(
mirror("rpmrepo-snapshot", "latest", "", OSB_UNIQUEID),
)
}