Actions
Bug #73970
closedContainerized deployments to use crimson-osd
% Done:
0%
Source:
Community (user)
Backport:
Regression:
No
Severity:
3 - minor
Reviewed:
Affected Versions:
ceph-qa-suite:
Description
With https://github.com/ceph/ceph/pull/65782 merged. `ceph-osd` is no longer overriden when Crimson is enabled:
See the following spec.in changes.
Before:
%if 0%{with crimson}
# package crimson-osd with the name of ceph-osd
install -m 0755 %{buildroot}%{_bindir}/crimson-osd %{buildroot}%{_bindir}/ceph-osd
install -m 0755 %{buildroot}%{_bindir}/crimson-objectstore-tool %{buildroot}%{_bindir}/ceph-objectstore-tool
%endif
After:
%if 0%{with crimson}
mv %{buildroot}%{_bindir}/crimson-osd %{buildroot}%{_bindir}/ceph-osd-crimson
%endif
For packaged based, using crimson osd is now possible with:
sudo update-alternatives --set ceph-osd /usr/bin/ceph-osd-crimson
However, for containerized deployments, we would now need to explicitly use the crimson-osd binary.
Updated by Matan Breizman 3 months ago
- Assignee set to Matan Breizman
- Pull request ID set to 66458
Updated by Matan Breizman 3 months ago
- Status changed from New to Fix Under Review
Updated by Matan Breizman 3 months ago
- Related to Enhancement #74081: cephadm to use crimson osd added
Updated by Matan Breizman about 2 months ago
- Status changed from Fix Under Review to Duplicate
Actions