Skip to content

Commit

Permalink
PendingReleaseNotes: notes on CLI changes
Browse files Browse the repository at this point in the history
Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
Sage Weil committed Jun 13, 2013
1 parent 314d9c3 commit a3fe2dc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions PendingReleaseNotes
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

v0.65
-----

* Huge revamp of the 'ceph' command-line interface implementation.

* The 'ceph osd tell ...' and 'ceph mon tell ...' commands are no
Expand All @@ -10,3 +13,14 @@
The 'ceph mds tell ...' command is still there, but will soon also
transition to 'ceph tell mds.<id or name or *> ...'

* The 'ceph osd crush add ...' command used to take one of two forms::

ceph osd crush add 123 osd.123 <weight> <location ...>
ceph osd crush add osd.123 <weight> <location ...>

This is because the id and crush name are redundant. Now only the
simple form is supported, where the osd name/id can either be a bare
id (integer) or name (osd.<id>)::

ceph osd crush add osd.123 <weight> <location ...>
ceph osd crush add 123 <weight> <location ...>

0 comments on commit a3fe2dc

Please sign in to comment.