1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-22 06:02:51 +00:00
catalog/task/buildkit-daemonless/0.1
Shivam Mukhade a6b4e5708d Modifies buildkit-daemonless task according to the new reorg proposal
Changes include:
  - adds version label
  - adds a minimum pipeline versions supported by the task
  - adds display name for task
  - adds tags for task
  - modified description to add a summary

This patch also moves the buildkit-daemonless files to the task directory
and modifies the path for install task command in readme file

Issue: #386

Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
2020-07-10 22:06:57 +01:00
..
buildkit-daemonless.yaml Modifies buildkit-daemonless task according to the new reorg proposal 2020-07-10 22:06:57 +01:00
README.md Modifies buildkit-daemonless task according to the new reorg proposal 2020-07-10 22:06:57 +01:00

BuildKit (Daemonless)

This Task builds source into a container image using Moby BuildKit.

This buildkit-daemonless Task is similar to buildkit but does not need creating Secret, Deployment, and Service resources for setting up the buildkitd daemon cluster.

buildkit buildkit-daemonless
Difficulty Hard Easy
Supports Rootless Yes No (BuildKit per se supports, but Tekton doesn't support)
Cache Registry+Local Registry

Install

$ kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/master/task/buildkit-daemonless/0.1/buildkit-daemonless.yaml
task.tekton.dev/buildkit-daemonless created

Parameters

  • DOCKERFILE: The path to the Dockerfile to execute (default: ./Dockerfile)
  • BUILDKIT_IMAGE: BuildKit image (default:moby/buildkit:vX.Y.Z@sha256:...)

Workspaces

  • source: A Workspace volume containing the source to build.

Resources

Outputs

  • image: An image-type PipelineResource specifying the image that should be built. Currently, generating resourceResult is not supported. (buildkit#993)