Skip to content

Commit ee0bf7d

Browse files
jlebondustymabe
authored andcommitted
build-extensions-container.sh: stop bind-mounting extensions.json
The latest openshift/os bits no longer do this, so we can drop support for it.
1 parent f4892e8 commit ee0bf7d

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/build-extensions-container.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,9 @@ img=localhost/extensions-container
3434
(set -x; podman build --from oci-archive:"$ostree_ociarchive" --network=host \
3535
--build-arg COSA=true --build-arg VARIANT="${variant}" --label version="$buildid" \
3636
--volume /etc/pki/ca-trust:/etc/pki/ca-trust:ro \
37-
--volume "${workdir}"/tmp/extensions.json:/tmp/extensions.json \
3837
-t "${img}" -f extensions/Dockerfile "${ctx_dir}")
3938

40-
# In newer openshift/os, extensions.json is now part of the image itself. If our
41-
# bind-mounted one is empty, it means we're dealing with the new kind.
42-
if [ ! -s "${workdir}"/tmp/extensions.json ]; then
43-
(set -x; podman run --rm "${img}" cat /usr/share/rpm-ostree/extensions.json > "${workdir}/tmp/extensions.json")
44-
fi
39+
(set -x; podman run --rm "${img}" cat /usr/share/rpm-ostree/extensions.json > "${workdir}/tmp/extensions.json")
4540

4641
# Call skopeo to export it from the container storage to an oci-archive.
4742
(set -x; skopeo copy "containers-storage:${img}" oci-archive:"$filename")

0 commit comments

Comments
 (0)