- ``ceph config-key dump`` dumps config-key entries and their
contents. (The existing ``ceph config-key list`` only dumps the key
names, not the values.)
+ - ``ceph config-key list`` is deprecated in favor of ``ceph config-key ls``.
- ``ceph osd set-{full,nearfull,backfillfull}-ratio`` sets the
cluster-wide ratio for various full thresholds (when the cluster
refuses IO, when the cluster warns about being close to full,
dout(10) << "listing keys" << dendl;
JSONCommand cmd;
- cmd.run(monc, "{\"prefix\": \"config-key list\"}");
+ cmd.run(monc, "{\"prefix\": \"config-key ls\"}");
lock.Unlock();
cmd.wait();
lock.Lock();
COMMAND("config-key exists " \
"name=key,type=CephString", \
"check for <key>'s existence", "config-key", "r", "cli,rest")
-COMMAND("config-key list ", "list keys", "config-key", "r", "cli,rest")
+COMMAND_WITH_FLAG("config-key list ", "list keys", "config-key", "r", "cli,rest",
+ FLAG(DEPRECATED))
+COMMAND("config-key ls ", "list keys", "config-key", "r", "cli,rest")
COMMAND("config-key dump", "dump keys and values", "config-key", "r", "cli,rest")