Ceph version issue in ubuntu
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
kolla |
Fix Released
|
Medium
|
Unassigned | ||
Rocky |
Fix Released
|
Medium
|
Unassigned | ||
Stein |
Fix Released
|
Medium
|
Unassigned |
Bug Description
In the master branch, the version of ceph is luminous, but in the ubuntu image that is built, the version of ceph is mimic.
```
(ceph-mon)
ceph version 13.2.1 (5533ecdc0fda92
```
The root cause is that the latest ceph version in the apt source is the mimic version.
```
(ceph-mon)
Package: ceph
Versions:
13.2.1+
Description Language:
Description Language:
Description Language:
12.2.4-0ubuntu1.1 (/var/lib/
Description Language:
Description Language:
Description Language:
12.2.4-0ubuntu1 (/var/lib/
Description Language:
Description Language:
Description Language:
```
So to install the luminous version we need to specify the version of all related packages of ceph.
```
apt-get install ceph=12.
```
Changed in kolla: | |
importance: | Undecided → Medium |
Changed in kolla: | |
status: | Fix Committed → Fix Released |
Reviewed: https:/ /review. openstack. org/604288 /git.openstack. org/cgit/ openstack/ kolla/commit/ ?id=78001f06a79 d3bdd52fb7e2702 fa4f124b453343
Committed: https:/
Submitter: Zuul
Branch: master
commit 78001f06a79d3bd d52fb7e2702fa4f 124b453343
Author: wangwei <email address hidden>
Date: Fri Sep 21 16:36:53 2018 +0900
Fix ceph version in ubuntu
The ceph version supported by kolla is now luminous, but the latest
ceph version of ubuntu's apt source is mimic, so there will be
problems with ceph deployment.
This patch solves this problem by specifying the version of the ceph
package installed.
Change-Id: Ibea3498589b6c3 c1512e558919c6e a00c95686cb
Closes-bug: #1793667