Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tekton/tasks/buildah/0.8.0/buildah.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ spec:
[ "$(workspaces.sslcertdir.bound)" = "true" ] && CERT_DIR_FLAG="--cert-dir=$(workspaces.sslcertdir.path)"
[ "$(workspaces.dockerconfig.bound)" = "true" ] && DOCKER_CONFIG="$(workspaces.dockerconfig.path)" && export DOCKER_CONFIG

# Resolve the IMAGE param into a shell variable so string operations
# like ${IMAGE%:*} work correctly.
IMAGE="$(params.IMAGE)"

# Detect if multi-arch mode is enabled (IMAGE_REPOSITORIES is non-empty)
MULTI_ARCH=false
if [ -n "$(params.IMAGE_REPOSITORIES)" ]; then
Expand Down
Loading