Skip to content

Commit

Permalink
restricting privileges for buildah bs
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvajagtap committed Sep 5, 2023
1 parent 4377cb7 commit 0c6d2f4
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 15 deletions.
2 changes: 1 addition & 1 deletion pkg/reconciler/buildrun/resources/taskrun_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var _ = Describe("GenerateTaskrun", func() {
buildStrategy.Spec.BuildSteps[0].ImagePullPolicy = "Always"

expectedCommandOrArg = []string{
"bud", "--tag=$(params.shp-output-image)", fmt.Sprintf("--file=$(inputs.params.%s)", "DOCKERFILE"), "$(params.shp-source-context)",
"--storage-driver=$(params.storage-driver)", "bud", "--tag=$(params.shp-output-image)", fmt.Sprintf("--file=$(inputs.params.%s)", "DOCKERFILE"), "$(params.shp-source-context)",
}
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,15 +138,16 @@ spec:
# Building the image
echo "[INFO] Building image ${image}"
buildah bud "${buildArgs[@]}" \
buildah --storage-driver=$(params.storage-driver) \
bud "${buildArgs[@]}" \
--registries-conf=/tmp/registries.conf \
--tag="${image}" \
--file="${dockerfile}" \
.
# Write the image
echo "[INFO] Writing image ${image}"
buildah push \
buildah --storage-driver=$(params.storage-driver) push \
"${image}" \
"oci:${target}"
# That's the separator between the shell script and its args
Expand Down Expand Up @@ -193,6 +194,11 @@ spec:
defaults:
- docker.io
- quay.io
- name: storage-driver
description: "The storage driver for buildah. Example: `overlay`, `vfs`."
type: string
default: "vfs"
# For details check "--storage-driver value" in https://github.com/containers/buildah/blob/main/docs/buildah.1.md#options
securityContext:
runAsUser: 0
runAsGroup: 0
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ spec:
image: quay.io/containers/buildah:v1.31.0
workingDir: $(params.shp-source-root)
securityContext:
privileged: true
capabilities:
add:
- "SETFCAP"
command:
- /bin/bash
args:
Expand Down Expand Up @@ -132,19 +134,20 @@ spec:
registries = [${registriesBlock::-2}]
EOF
fi
fi
# Building the image
echo "[INFO] Building image ${image}"
buildah bud "${buildArgs[@]}" \
buildah --storage-driver=$(params.storage-driver) \
bud "${buildArgs[@]}" \
--registries-conf=/tmp/registries.conf \
--tag="${image}" \
--file="${dockerfile}" \
.
# Push the image
echo "[INFO] Pushing image ${image}"
buildah push \
buildah --storage-driver=$(params.storage-driver) push \
--digestfile='$(results.shp-image-digest.path)' \
--tls-verify="${tlsVerify}" \
"${image}" \
Expand Down Expand Up @@ -191,6 +194,11 @@ spec:
defaults:
- docker.io
- quay.io
- name: storage-driver
description: "The storage driver for buildah. Example: `overlay`, `vfs`"
type: string
default: "vfs"
# For details check "--storage-driver value" in https://github.com/containers/buildah/blob/main/docs/buildah.1.md#options
securityContext:
runAsUser: 0
runAsGroup: 0
17 changes: 13 additions & 4 deletions test/buildstrategy_samples.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ spec:
image: quay.io/containers/buildah:v1.31.0
workingDir: $(params.shp-source-root)
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- bud
- --tag=$(params.shp-output-image)
- --file=$(build.dockerfile)
Expand All @@ -42,10 +44,12 @@ spec:
- name: buildah-push
image: quay.io/containers/buildah:v1.31.0
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- push
- --tls-verify=false
- docker://$(params.shp-output-image)
Expand Down Expand Up @@ -79,10 +83,12 @@ spec:
image: quay.io/containers/buildah:v1.31.0
workingDir: $(params.shp-source-root)
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- bud
- --tag=$(params.shp-output-image)
- --file=$(build.dockerfile)
Expand All @@ -107,10 +113,12 @@ spec:
- name: buildah-push
image: quay.io/containers/buildah:v1.31.0
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- push
- --tls-verify=false
- docker://$(params.shp-output-image)
Expand Down Expand Up @@ -149,6 +157,7 @@ spec:
workingDir: $(params.shp-source-root)
command:
- buildah
- --storage-driver=$(params.storage-driver)
- bud
- --tls-verify=false
- --layers
Expand Down
16 changes: 12 additions & 4 deletions test/clusterbuildstrategy_samples.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ spec:
image: quay.io/containers/buildah:v1.31.0
workingDir: $(params.shp-source-root)
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- bud
- --tag=$(params.shp-output-image)
- --file=$(build.dockerfile)
Expand All @@ -43,10 +45,12 @@ spec:
- name: buildah-push
image: quay.io/containers/buildah:v1.31.0
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- push
- --tls-verify=false
- docker://$(params.shp-output-image)
Expand Down Expand Up @@ -80,10 +84,12 @@ spec:
image: quay.io/containers/buildah:v1.31.0
workingDir: $(params.shp-source-root)
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- bud
- --tag=$(params.shp-output-image)
- --file=$(build.dockerfile)
Expand All @@ -101,10 +107,12 @@ spec:
- name: buildah-push
image: quay.io/containers/buildah:v1.31.0
securityContext:
privileged: true
capabilities:
add: ["SETFCAP"]
command:
- /usr/bin/buildah
args:
- --storage-driver=$(params.storage-driver)
- push
- --tls-verify=false
- docker://$(params.shp-output-image)
Expand Down

0 comments on commit 0c6d2f4

Please sign in to comment.