-
Notifications
You must be signed in to change notification settings - Fork 31
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
cents: add support for CentOS 9 #70
Conversation
8d8b97f
to
7916c3c
Compare
Signed-off-by: Ernesto Puerta <[email protected]>
75355ce
to
bf64a6a
Compare
docker/ceph/centos/Dockerfile
Outdated
FROM quay.io/centos/centos:stream$CENTOS_VERSION as ceph-base | ||
ARG CENTOS_VERSION | ||
|
||
RUN dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos -y | ||
RUN if [ "$CENTOS_VERSION" = "8" ]; then \ | ||
dnf --disablerepo '*' --enablerepo=extras centos-linux-repos centos-stream-repos swap -y; \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the reason of the current failure:
dnf --disablerepo '*' --enablerepo=extras centos-linux-repos centos-stream-repos swap -y; \ | |
dnf --disablerepo '*' --enablerepo="extras centos-linux-repos centos-stream-repos" swap -y; \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you @epuertat I might have forgotten to update but I removed centos 8 completely and went with centos9. centos8 was failing to pull in its dependencies for appstreams and others...
072ebd9
to
c875781
Compare
centos8 is failing contionusly to pull and install its repos so this is an attempt to remove it completely and see if it passes Signed-off-by: Nizamudeen A <[email protected]>
i am merging this for now since all the builds are breaking for a while. With this we will only have the ceph-reef image in a broken state which i can take a look separately
|
Signed-off-by: Ernesto Puerta [email protected]