Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily exclude ceph-iscsi when building revad-ceph image #4032

Merged
merged 2 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions changelog/unreleased/exclude-ceph-iscsi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bugfix: Temporarily exclude ceph-iscsi when building revad-ceph image

Due to `Package ceph-iscsi-3.6-1.el8.noarch.rpm is not signed` error when
building the revad-ceph docker image, the package `ceph-iscsi` has been excluded from the dnf update.
It will be included again once the pkg will be signed again.

https://github.com/cs3org/reva/pull/4032
2 changes: 1 addition & 1 deletion docker/Dockerfile.revad-ceph
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

FROM quay.io/ceph/ceph:v16

RUN dnf update -y && dnf install -y \
RUN dnf update --exclude=ceph-iscsi -y && dnf install -y \
git \
gcc \
make \
Expand Down