Skip to content

Commit

Permalink
Updated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Senjuti256 committed Sep 5, 2023
1 parent 83a5ed3 commit 422c14a
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions doc/buildah.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Containers Tekton Tasks
`Buildah` Tekton Task
-----------------------

# `Buildah` Tekton Task
# The `buildah` Task is meant to build [OCI][OCI] container images without the requirement of container runtime daemon like Docker daemon using [Buildah][containersBuildah], the Task results contain the image name and the SHA256 image digest.

The `buildah` Task is meant to build [OCI][OCI] container images without the requirement of container runtime daemon like Docker daemon using [Buildah][containersBuildah], the Task results contain the image name and the SHA256 image digest.
## Usage

Please, consider the usage example below:

Expand Down Expand Up @@ -50,8 +50,8 @@ Then make sure the Secret is linked with the Service-Account running the `TaskRu
| `VERBOSE` | `string` | `false` | Shows a more verbose (debug) output. |
| `SUBDIRECTORY` | `string` | `.` | Relative subdirectory to the `source` Workspace for the build-context. |
| `STORAGE_DRIVER` | `string` | `overlay` | Set buildah storage driver to reflect the currrent cluster node's settings. |
| `BUILD_EXTRA_ARGS` | `string` | `""` | Extra parameters passed for the build command when building images. |
| `PUSH_EXTRA_ARGS` | `string` | `""` | Extra parameters passed for the push command when pushing images. |
| `BUILD_EXTRA_ARGS` | `string` | `` | Extra parameters passed for the build command when building images. |
| `PUSH_EXTRA_ARGS` | `string` | `` | Extra parameters passed for the push command when pushing images. |
| `SKIP_PUSH` | `string` | `false` | Skip pushing the image to the container registry. |


Expand All @@ -66,3 +66,8 @@ Then make sure the Secret is linked with the Service-Account running the `TaskRu
[containersBuildah]: https://github.com/containers/buildah
[OCI]: https://opencontainers.org/

## Workspace

| Name | Optional | Description |
| :------------ | :------------------------: | :--------------------------- |
| `source` | `false` | Container build context, like for instnace a application source code followed by a `Containerfile`. |

0 comments on commit 422c14a

Please sign in to comment.