buildkit/examples
Erik Sipsma 1739210db2 Add docs+examples for Merge+Diff.
Signed-off-by: Erik Sipsma <erik@sipsma.dev>
2022-02-16 17:03:13 -08:00
..
build-using-dockerfile progessui: return warnings from printer 2021-11-30 21:58:37 -08:00
buildctl-daemonless daemonless: wait for daemon to finish before exit 2021-07-15 19:38:01 -07:00
buildkit0 update go to 1.17 2021-08-16 19:56:45 -07:00
buildkit1 update go to 1.17 2021-08-16 19:56:45 -07:00
buildkit2 update go to 1.17 2021-08-16 19:56:45 -07:00
buildkit3 update go to 1.17 2021-08-16 19:56:45 -07:00
buildkit4 Add docs+examples for Merge+Diff. 2022-02-16 17:03:13 -08:00
dockerfile2llb buildinfo: use metadata to set frontend build sources 2022-02-14 21:55:20 +01:00
gobuild go fmt: add //go:build 2021-10-28 13:26:43 +02:00
kubernetes Add lint 2020-11-22 18:11:05 +01:00
nested-llb update go to 1.17 2021-08-16 19:56:45 -07:00
systemd Isolate systemd user network namespace from host 2021-11-19 07:59:19 +01:00
README.md Add docs+examples for Merge+Diff. 2022-02-16 17:03:13 -08:00
kube-consistent-hash massive doc updates 2019-10-16 18:55:27 +09:00

README.md

BuildKit Examples

Kubernetes manifests

  • ./kubernetes: Kubernetes manifests (Pod, Deployment, StatefulSet, Job)

CLI examples

LLB examples

For understanding the basics of LLB, buildkit* directory contains scripts that define how to build different configurations of BuildKit itself and its dependencies using the client package. Running one of these scripts generates a protobuf definition of a build graph. Note that the script itself does not execute any steps of the build.

You can use buildctl debug dump-llb to see what data is in this definition. Add --dot to generate dot layout.

go run examples/buildkit0/buildkit.go \
    | buildctl debug dump-llb \
    | jq .

To start building use buildctl build command. The example script accepts --with-containerd flag to choose if containerd binaries and support should be included in the end result as well.

go run examples/buildkit0/buildkit.go \
    | buildctl build

buildctl build will show interactive progress bar by default while the build job is running. If the path to the trace file is specified, the trace file generated will contain all information about the timing of the individual steps and logs.

Different versions of the example scripts show different ways of describing the build definition for this project to show the capabilities of the library. New versions have been added when new features have become available.

  • ./buildkit0 - uses only exec operations, defines a full stage per component.
  • ./buildkit1 - cloning git repositories has been separated for extra concurrency.
  • ./buildkit2 - uses git sources directly instead of running git clone, allowing better performance and much safer caching.
  • ./buildkit3 - allows using local source files for separate components eg. ./buildkit3 --runc=local | buildctl build --local runc-src=some/local/path
  • ./buildkit4 - uses MergeOp to optimize copy chains for better caching behavior (see docs/merge+diff.md for more details)
  • ./dockerfile2llb - can be used to convert a Dockerfile to LLB for debugging purposes
  • ./nested-llb - shows how to use nested invocation to generate LLB
  • ./gobuild - shows how to use nested invocation to generate LLB for Go package internal dependencies