-
Notifications
You must be signed in to change notification settings - Fork 555
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
Addressed few todo's #4268
Addressed few todo's #4268
Conversation
Pull request has been modified.
deploy/cephcsi/image/Dockerfile
Outdated
@@ -38,6 +38,7 @@ RUN ${GOROOT}/bin/go version && ${GOROOT}/bin/go env | |||
|
|||
RUN dnf -y install --nodocs \ | |||
librados-devel librbd-devel \ | |||
librados-devel libcephfs-devel \ |
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.
librados-devel
is now listed 2x. Just add libcephfs-devel
on the same line as librbd-devel
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.
Updated, thanks Niels!
scripts/Dockerfile.devel
Outdated
@@ -29,6 +29,7 @@ RUN dnf -y install \ | |||
gcc \ | |||
librados-devel \ | |||
librbd-devel \ | |||
libcephfs-devel \ |
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.
Can you check the indention?
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.
Locally the earlier one was fine, adding an extra tab makes it properly indent here. So added now.
scripts/Dockerfile.test
Outdated
@@ -33,6 +33,7 @@ RUN source /build.env \ | |||
findutils \ | |||
librados-devel \ | |||
librbd-devel \ | |||
libcephfs-devel \ |
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.
and here as well?
@Mergifyio rebase |
this commit updates the version of go-ceph imported to latest, so we can make use of github.com/ceph/go-ceph/cephfs Signed-off-by: Riya Singhal <[email protected]>
this commit replaces string comparsion with error code at few places Signed-off-by: Riya Singhal <[email protected]>
Signed-off-by: Riya Singhal <[email protected]>
✅ Branch has been successfully rebased |
@Mergifyio queue |
🛑 The pull request has been removed from the queue
|
/test ci/centos/k8s-e2e-external-storage/1.28 |
/test ci/centos/k8s-e2e-external-storage/1.26 |
/test ci/centos/upgrade-tests-cephfs |
/test ci/centos/mini-e2e-helm/k8s-1.28 |
/test ci/centos/mini-e2e-helm/k8s-1.26 |
/test ci/centos/k8s-e2e-external-storage/1.27 |
/test ci/centos/mini-e2e/k8s-1.28 |
/test ci/centos/upgrade-tests-rbd |
/test ci/centos/mini-e2e/k8s-1.26 |
/test ci/centos/mini-e2e-helm/k8s-1.27 |
/test ci/centos/mini-e2e/k8s-1.27 |
/test ci/centos/mini-e2e/k8s-1.27 |
This PR updates the go-ceph version to use github.com/ceph/go-ceph/cephfs and fixed few todo by replacing the string comparison with error code check.