From 1b9b7e7148d07068cdd4db6a20cec293bd7ea907 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Wed, 28 Feb 2024 17:59:19 +0100 Subject: [PATCH] Add `duct-tape-resource` Add `duct-tape-resource`, a generic custom Concourse resource to write custom resources on the fly as inline shell scripts in the pipeline definition itself. Signed-off-by: Matthias Diester --- homeport-duct-tape-resource.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 homeport-duct-tape-resource.yml diff --git a/homeport-duct-tape-resource.yml b/homeport-duct-tape-resource.yml new file mode 100644 index 0000000..b8855a1 --- /dev/null +++ b/homeport-duct-tape-resource.yml @@ -0,0 +1,5 @@ +name: duct-tape-resource +repo: https://github.com/homeport/duct-tape-resource +container_image: ghcr.io/homeport/duct-tape-resource +description: | + Generic custom Concourse resource with which one can define the check, in, and out as inline scripts right in the pipeline resource definition. It is for when you quickly need a Concourse resource for a specific task, but writing one from scratch would take too long. With this resource, one can glue things together.