2018-08-02 14:32:38 +00:00
|
|
|
|
|
|
|
|
|
.. _orchestrator-cli-module:
|
|
|
|
|
|
|
|
|
|
================
|
|
|
|
|
Orchestrator CLI
|
|
|
|
|
================
|
|
|
|
|
|
|
|
|
|
This module provides a command line interface (CLI) to orchestrator
|
|
|
|
|
modules (ceph-mgr modules which interface with external orchestation services)
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
As the orchestrator CLI unifies different external orchestrators, a common nomenclature
|
2019-01-29 14:51:16 +00:00
|
|
|
|
for the orchestrator module is needed.
|
|
|
|
|
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
| host | hostname (not DNS name) of the |
|
|
|
|
|
| | physical host. Not the podname, |
|
|
|
|
|
| | container name, or hostname inside |
|
|
|
|
|
| | the container. |
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
| service type | The type of the service. e.g., nfs, |
|
|
|
|
|
| | mds, osd, mon, rgw, mgr, iscsi |
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
| service | A logical service, Typically |
|
|
|
|
|
| | comprised of multiple service |
|
|
|
|
|
| | instances on multiple hosts for HA |
|
|
|
|
|
| | |
|
|
|
|
|
| | * ``fs_name`` for mds type |
|
|
|
|
|
| | * ``rgw_zone`` for rgw type |
|
|
|
|
|
| | * ``ganesha_cluster_id`` for nfs type |
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
| service instance | A single instance of a service. |
|
|
|
|
|
| | Usually a daemon, but maybe not |
|
|
|
|
|
| | (e.g., might be a kernel service |
|
|
|
|
|
| | like LIO or knfsd or whatever) |
|
|
|
|
|
| | |
|
|
|
|
|
| | This identifier should |
|
|
|
|
|
| | uniquely identify the instance |
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
| daemon | A running process on a host; use |
|
|
|
|
|
| | “service instance” instead |
|
|
|
|
|
+--------------------------------------+---------------------------------------+
|
|
|
|
|
|
|
|
|
|
The relation between the names is the following:
|
|
|
|
|
|
|
|
|
|
* a service belongs to a service type
|
|
|
|
|
* a service instance belongs to a service type
|
|
|
|
|
* a service instance belongs to a single service group
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-08-02 14:32:38 +00:00
|
|
|
|
Configuration
|
|
|
|
|
=============
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
You can select the orchestrator module to use with the ``set backend`` command::
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
|
|
|
|
ceph orchestrator set backend <module>
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
For example, to enable the Rook orchestrator module and use it with the CLI::
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
|
|
|
|
ceph mgr module enable rook
|
|
|
|
|
ceph orchestrator set backend rook
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
You can then check backend is properly configured::
|
2018-08-06 15:20:39 +00:00
|
|
|
|
|
|
|
|
|
ceph orchestrator status
|
|
|
|
|
|
2018-08-02 14:32:38 +00:00
|
|
|
|
Usage
|
|
|
|
|
=====
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
|
|
The orchestrator CLI is unfinished and work in progress. Some commands will not
|
|
|
|
|
exist, or return a different result.
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
Orchestrator modules may only implement a subset of the commands listed below.
|
|
|
|
|
Also, the implementation of the commands are orchestrator module dependent and will
|
|
|
|
|
differ between implementations.
|
|
|
|
|
|
|
|
|
|
Status
|
|
|
|
|
~~~~~~
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
ceph orchestrator status
|
|
|
|
|
|
|
|
|
|
Show current orchestrator mode and high-level status (whether the module able
|
|
|
|
|
to talk to it)
|
|
|
|
|
|
|
|
|
|
Also show any in-progress actions.
|
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Host Management
|
|
|
|
|
~~~~~~~~~~~~~~~
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
List hosts associated with the cluster::
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
ceph orchestrator host ls
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Add and remove hosts::
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
ceph orchestrator host add <host>
|
|
|
|
|
ceph orchestrator host rm <host>
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
|
|
|
|
OSD Management
|
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
List Devices
|
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-02 14:32:38 +00:00
|
|
|
|
Print a list of discovered devices, grouped by node and optionally
|
|
|
|
|
filtered to a particular node:
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
ceph orchestrator device ls [--host=...] [--refresh]
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
|
|
|
|
Create OSDs
|
|
|
|
|
^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Create OSDs on a group of devices on a single host::
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
ceph orchestrator osd create <host>:<drive>
|
|
|
|
|
ceph orchestrator osd create -i <path-to-drive-group.json>
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
|
|
|
|
|
2018-12-19 14:17:55 +00:00
|
|
|
|
The output of ``osd create`` is not specified and may vary between orchestrator backends.
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
Where ``drive.group.json`` is a JSON file containing the fields defined in :class:`orchestrator.DriveGroupSpec`
|
|
|
|
|
|
|
|
|
|
|
2018-12-19 14:17:55 +00:00
|
|
|
|
Decommission an OSD
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
::
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
ceph orchestrator osd rm <osd-id> [osd-id...]
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
Removes one or more OSDs from the cluster and the host, if the OSDs are marked as
|
2018-12-19 14:17:55 +00:00
|
|
|
|
``destroyed``.
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
..
|
|
|
|
|
Blink Device Lights
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
ceph orchestrator device ident-on <host> <devname>
|
|
|
|
|
ceph orchestrator device ident-off <host> <devname>
|
|
|
|
|
ceph orchestrator device fault-on <host> <devname>
|
|
|
|
|
ceph orchestrator device fault-off <host> <devname>
|
|
|
|
|
|
2018-12-19 14:17:55 +00:00
|
|
|
|
ceph orchestrator osd ident-on {primary,journal,db,wal,all} <osd-id>
|
|
|
|
|
ceph orchestrator osd ident-off {primary,journal,db,wal,all} <osd-id>
|
|
|
|
|
ceph orchestrator osd fault-on {primary,journal,db,wal,all} <osd-id>
|
|
|
|
|
ceph orchestrator osd fault-off {primary,journal,db,wal,all} <osd-id>
|
|
|
|
|
|
|
|
|
|
Where ``journal`` is the filestore journal, ``wal`` is the write ahead log of
|
|
|
|
|
bluestore and ``all`` stands for all devices associated with the osd
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Monitor and manager management
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Creates or removes MONs or MGRs from the cluster. Orchestrator may return an
|
|
|
|
|
error if it doesn't know how to do this transition.
|
|
|
|
|
|
|
|
|
|
Update the number of monitor nodes::
|
|
|
|
|
|
|
|
|
|
ceph orchestrator mon update <num> [host, host:network...]
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Each host can optionally specificy a network for the monitor to listen on.
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
Update the number of manager nodes::
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 17:31:59 +00:00
|
|
|
|
ceph orchestrator mgr update <num> [host...]
|
|
|
|
|
|
|
|
|
|
..
|
2018-11-15 15:29:03 +00:00
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
The host lists are the new full list of mon/mgr hosts
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
specifying hosts is optional for some orchestrator modules
|
|
|
|
|
and mandatory for others (e.g. Ansible).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Service Status
|
2019-01-29 14:51:16 +00:00
|
|
|
|
~~~~~~~~~~~~~~
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
2018-10-30 18:28:02 +00:00
|
|
|
|
Print a list of services known to the orchestrator. The list can be limited to
|
|
|
|
|
services on a particular host with the optional --host parameter and/or
|
|
|
|
|
services of a particular type via optional --type parameter
|
|
|
|
|
(mon, osd, mgr, mds, rgw):
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
ceph orchestrator service ls [--host host] [--svc_type type] [--refresh|--no-cache]
|
2018-10-30 18:28:02 +00:00
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
Discover the status of a particular service::
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
ceph orchestrator service status <type> <name> [--refresh]
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
|
|
|
|
|
2018-11-15 15:29:03 +00:00
|
|
|
|
Query the status of a particular service instance (mon, osd, mds, rgw). For OSDs
|
|
|
|
|
the id is the numeric OSD ID, for MDS services it is the filesystem name::
|
|
|
|
|
|
|
|
|
|
ceph orchestrator service-instance status <type> <instance-name> [--refresh]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Stateless services (MDS/RGW/NFS/rbd-mirror/iSCSI)
|
2019-01-29 14:51:16 +00:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-11-15 15:29:03 +00:00
|
|
|
|
The orchestrator is not responsible for configuring the services. Please look into the corresponding
|
|
|
|
|
documentation for details.
|
|
|
|
|
|
|
|
|
|
The ``name`` parameter is an identifier of the group of instances:
|
|
|
|
|
* a CephFS filesystem for a group of MDS daemons,
|
|
|
|
|
* a zone name for a group of RGWs
|
|
|
|
|
|
|
|
|
|
Sizing: the ``size`` parameter gives the number of daemons in the cluster
|
|
|
|
|
(e.g. the number of MDS daemons for a particular CephFS filesystem).
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
Creating/growing/shrinking/removing services::
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 11:56:01 +00:00
|
|
|
|
ceph orchestrator {mds,rgw} update <name> <size> [host…]
|
|
|
|
|
ceph orchestrator {mds,rgw} add <name>
|
2018-11-15 17:22:38 +00:00
|
|
|
|
ceph orchestrator nfs update <name> <size> [host…]
|
|
|
|
|
ceph orchestrator nfs add <name> <pool> [--namespace=<namespace>]
|
2019-01-29 14:51:16 +00:00
|
|
|
|
ceph orchestrator {mds,rgw,nfs} rm <name>
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
2018-12-20 11:56:01 +00:00
|
|
|
|
e.g., ``ceph orchestrator mds update myfs 3 host1 host2 host3``
|
2018-11-15 15:29:03 +00:00
|
|
|
|
|
|
|
|
|
Start/stop/reload::
|
|
|
|
|
|
|
|
|
|
ceph orchestrator service {stop,start,reload} <type> <name>
|
|
|
|
|
|
|
|
|
|
ceph orchestrator service-instance {start,stop,reload} <type> <instance-name>
|
2018-08-02 14:32:38 +00:00
|
|
|
|
|
|
|
|
|
|
2019-01-29 14:51:16 +00:00
|
|
|
|
Current Implementation Status
|
|
|
|
|
=============================
|
|
|
|
|
|
|
|
|
|
This is an overview of the current implementation status of the orchestrators.
|
|
|
|
|
|
|
|
|
|
=================================== ========= ====== ========= =====
|
|
|
|
|
Command Ansible Rook DeepSea SSH
|
|
|
|
|
=================================== ========= ====== ========= =====
|
|
|
|
|
host add ⚪ ⚪ ⚪ ✔️
|
|
|
|
|
host ls ⚪ ⚪ ⚪ ✔️
|
|
|
|
|
host rm ⚪ ⚪ ⚪ ✔️
|
2019-02-19 19:28:50 +00:00
|
|
|
|
mgr update ⚪ ⚪ ⚪ ✔️
|
|
|
|
|
mon update ⚪ ⚪ ⚪ ✔️
|
|
|
|
|
osd create ✔️ ✔️ ⚪ ✔️
|
2019-01-29 14:51:16 +00:00
|
|
|
|
osd device {ident,fault}-{on,off} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
osd rm ✔️ ⚪ ⚪ ⚪
|
|
|
|
|
device {ident,fault}-(on,off} ⚪ ⚪ ⚪ ⚪
|
2019-02-19 19:28:50 +00:00
|
|
|
|
device ls ✔️ ✔️ ✔️ ✔️
|
2019-01-29 14:51:16 +00:00
|
|
|
|
service ls ⚪ ✔️ ✔️ ⚪
|
|
|
|
|
service status ⚪ ✔️ ✔️ ⚪
|
|
|
|
|
service-instance status ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
iscsi {stop,start,reload} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
iscsi add ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
iscsi rm ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
iscsi update ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
mds {stop,start,reload} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
mds add ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
mds rm ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
mds update ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
nfs {stop,start,reload} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
nfs add ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
nfs rm ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
nfs update ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rbd-mirror {stop,start,reload} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rbd-mirror add ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rbd-mirror rm ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rbd-mirror update ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rgw {stop,start,reload} ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
rgw add ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
rgw rm ⚪ ✔️ ⚪ ⚪
|
|
|
|
|
rgw update ⚪ ⚪ ⚪ ⚪
|
|
|
|
|
=================================== ========= ====== ========= =====
|
|
|
|
|
|
|
|
|
|
where
|
|
|
|
|
|
|
|
|
|
* ⚪ = not yet implemented
|
|
|
|
|
* ❌ = not applicable
|
|
|
|
|
* ✔ = implemented
|