Skip to content

Commit

Permalink
Remove the squash_all parameter
Browse files Browse the repository at this point in the history
I got confused before.

`podman build` has both a `--squash` and a `--squash-all` option.

`buildah build` has only a `--squash` option which behaves like the
`--squash-all` option from `podman build`.

We _just_ added this param earlier this morning. Hopefully we can remove
it here without needing a task version bump.
  • Loading branch information
ralphbean committed Jul 2, 2024
1 parent 09da36d commit ca6e878
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 53 deletions.
3 changes: 1 addition & 2 deletions task/buildah-oci-ta/0.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ When prefetch-dependencies task was activated it is using its artifacts to run b
|IMAGE_EXPIRES_AFTER|Delete image tag after specified time. Empty means to keep the image tag. Time values could be something like 1h, 2d, 3w for hours, days, and weeks, respectively.|""|false|
|PREFETCH_INPUT|In case it is not empty, the prefetched content should be made available to the build.|""|false|
|SOURCE_ARTIFACT|The Trusted Artifact URI pointing to the artifact with the application source code.||true|
|SQUASH|Squash new layers added as a part of this build, as per --squash|false|false|
|SQUASH_ALL|Squash all new and previous layers added as a part of this build, as per --squash-all|false|false|
|SQUASH|Squash all new and previous layers added as a part of this build, as per --squash|false|false|
|TARGET_STAGE|Target stage in Dockerfile to build. If not specified, the Dockerfile is processed entirely to (and including) its last stage.|""|false|
|TLSVERIFY|Verify the TLS on the registry endpoint (for push/pull to a non-TLS registry)|true|false|
|YUM_REPOS_D_FETCHED|Path in source workspace where dynamically-fetched repos are present|fetched.repos.d|false|
Expand Down
13 changes: 1 addition & 12 deletions task/buildah-oci-ta/0.1/buildah-oci-ta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,8 @@ spec:
the application source code.
type: string
- name: SQUASH
description: Squash new layers added as a part of this build, as per
--squash
type: string
default: "false"
- name: SQUASH_ALL
description: Squash all new and previous layers added as a part of this
build, as per --squash-all
build, as per --squash
type: string
default: "false"
- name: TARGET_STAGE
Expand Down Expand Up @@ -181,8 +176,6 @@ spec:
value: $(params.IMAGE_EXPIRES_AFTER)
- name: SQUASH
value: $(params.SQUASH)
- name: SQUASH_ALL
value: $(params.SQUASH_ALL)
- name: STORAGE_DRIVER
value: vfs
- name: TARGET_STAGE
Expand Down Expand Up @@ -302,10 +295,6 @@ spec:
BUILDAH_ARGS+=("--squash")
fi
if [ "${SQUASH_ALL}" == "true" ]; then
BUILDAH_ARGS+=("--squash-all")
fi
if [ -f "/var/workdir/cachi2/cachi2.env" ]; then
cp -r "/var/workdir/cachi2" /tmp/
chmod -R go+rwX /tmp/cachi2
Expand Down
15 changes: 2 additions & 13 deletions task/buildah-remote-oci-ta/0.1/buildah-remote-oci-ta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,10 @@ spec:
source code.
name: SOURCE_ARTIFACT
type: string
- default: "false"
description: Squash new layers added as a part of this build, as per --squash
name: SQUASH
type: string
- default: "false"
description: Squash all new and previous layers added as a part of this build,
as per --squash-all
name: SQUASH_ALL
as per --squash
name: SQUASH
type: string
- default: ""
description: Target stage in Dockerfile to build. If not specified, the Dockerfile
Expand Down Expand Up @@ -160,8 +156,6 @@ spec:
value: $(params.IMAGE_EXPIRES_AFTER)
- name: SQUASH
value: $(params.SQUASH)
- name: SQUASH_ALL
value: $(params.SQUASH_ALL)
- name: STORAGE_DRIVER
value: vfs
- name: TARGET_STAGE
Expand Down Expand Up @@ -318,10 +312,6 @@ spec:
BUILDAH_ARGS+=("--squash")
fi
if [ "${SQUASH_ALL}" == "true" ]; then
BUILDAH_ARGS+=("--squash-all")
fi
if [ -f "/var/workdir/cachi2/cachi2.env" ]; then
cp -r "/var/workdir/cachi2" /tmp/
chmod -R go+rwX /tmp/cachi2
Expand Down Expand Up @@ -416,7 +406,6 @@ spec:
-e IMAGE="$IMAGE" \
-e IMAGE_EXPIRES_AFTER="$IMAGE_EXPIRES_AFTER" \
-e SQUASH="$SQUASH" \
-e SQUASH_ALL="$SQUASH_ALL" \
-e STORAGE_DRIVER="$STORAGE_DRIVER" \
-e TARGET_STAGE="$TARGET_STAGE" \
-e TLSVERIFY="$TLSVERIFY" \
Expand Down
15 changes: 2 additions & 13 deletions task/buildah-remote/0.1/buildah-remote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,10 @@ spec:
build'
name: ADD_CAPABILITIES
type: string
- default: "false"
description: Squash new layers added as a part of this build, as per --squash
name: SQUASH
type: string
- default: "false"
description: Squash all new and previous layers added as a part of this build,
as per --squash-all
name: SQUASH_ALL
as per --squash
name: SQUASH
type: string
- description: The platform to build on
name: PLATFORM
Expand Down Expand Up @@ -169,8 +165,6 @@ spec:
value: $(params.ADD_CAPABILITIES)
- name: SQUASH
value: $(params.SQUASH)
- name: SQUASH_ALL
value: $(params.SQUASH_ALL)
- name: BUILDER_IMAGE
value: quay.io/redhat-appstudio/buildah:v1.31.0@sha256:34f12c7b72ec2c28f1ded0c494b428df4791c909f1f174dd21b8ed6a57cf5ddb
volumeMounts:
Expand Down Expand Up @@ -310,10 +304,6 @@ spec:
BUILDAH_ARGS+=("--squash")
fi
if [ "${SQUASH_ALL}" == "true" ]; then
BUILDAH_ARGS+=("--squash-all")
fi
if [ -f "$(workspaces.source.path)/cachi2/cachi2.env" ]; then
cp -r "$(workspaces.source.path)/cachi2" /tmp/
chmod -R go+rwX /tmp/cachi2
Expand Down Expand Up @@ -415,7 +405,6 @@ spec:
-e BUILD_ARGS_FILE="$BUILD_ARGS_FILE" \
-e ADD_CAPABILITIES="$ADD_CAPABILITIES" \
-e SQUASH="$SQUASH" \
-e SQUASH_ALL="$SQUASH_ALL" \
-e COMMIT_SHA="$COMMIT_SHA" \
-v "$BUILD_DIR/workspaces/source:$(workspaces.source.path):Z" \
-v "$BUILD_DIR/volumes/shared:/shared:Z" \
Expand Down
3 changes: 1 addition & 2 deletions task/buildah/0.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ When prefetch-dependencies task was activated it is using its artifacts to run b
|ADDITIONAL_SECRET|Name of a secret which will be made available to the build with 'buildah build --secret' at /run/secrets/$ADDITIONAL_SECRET|does-not-exist|false|
|BUILD_ARGS|Array of --build-arg values ("arg=value" strings)|[]|false|
|BUILD_ARGS_FILE|Path to a file with build arguments, see https://www.mankier.com/1/buildah-build#--build-arg-file|""|false|
|SQUASH|Squash new layers added as a part of this build, as per --squash|false|false|
|SQUASH_ALL|Squash all new and previous layers added as a part of this build, as per --squash-all|false|false|
|SQUASH|Squash all new and previous layers added as a part of this build, as per --squash|false|false|

## Results
|name|description|
Expand Down
12 changes: 1 addition & 11 deletions task/buildah/0.1/buildah.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,7 @@ spec:
type: string
default: ""
- name: SQUASH
description: Squash new layers added as a part of this build, as per --squash
type: string
default: "false"
- name: SQUASH_ALL
description: Squash all new and previous layers added as a part of this build, as per --squash-all
description: Squash all new and previous layers added as a part of this build, as per --squash
type: string
default: "false"

Expand Down Expand Up @@ -157,8 +153,6 @@ spec:
value: $(params.ADD_CAPABILITIES)
- name: SQUASH
value: $(params.SQUASH)
- name: SQUASH_ALL
value: $(params.SQUASH_ALL)

steps:
- image: quay.io/redhat-appstudio/buildah:v1.31.0@sha256:34f12c7b72ec2c28f1ded0c494b428df4791c909f1f174dd21b8ed6a57cf5ddb
Expand Down Expand Up @@ -255,10 +249,6 @@ spec:
BUILDAH_ARGS+=("--squash")
fi
if [ "${SQUASH_ALL}" == "true" ]; then
BUILDAH_ARGS+=("--squash-all")
fi
if [ -f "$(workspaces.source.path)/cachi2/cachi2.env" ]; then
cp -r "$(workspaces.source.path)/cachi2" /tmp/
chmod -R go+rwX /tmp/cachi2
Expand Down

0 comments on commit ca6e878

Please sign in to comment.