summaryrefslogtreecommitdiffstats
path: root/doc/mgr/dashboard_plugins/feature_toggles.inc.rst
blob: 7c96b0faaaf5b80a230c187cc5eefd2aa75bcd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.. _dashboard-feature-toggles:

Feature Toggles
^^^^^^^^^^^^^^^

This plug-in allows to enable or disable some features from the Ceph Dashboard
on-demand. When a feature becomes disabled:

- Its front-end elements (web pages, menu entries, charts, etc.) will become hidden.
- Its associated REST API endpoints will reject any further requests (404, Not Found Error).

The main purpose of this plug-in is to allow ad-hoc customizations of the workflows exposed
by the dashboard. Additionally, it could allow for dynamically enabling experimental
features with minimal configuration burden and no service impact.

The list of features that can be enabled/disabled is:

- **Block (RBD)**:
   - Image Management: ``rbd``
   - Mirroring: ``mirroring``
   - iSCSI: ``iscsi``
- **Filesystem (Cephfs)**: ``cephfs``
- **Objects (RGW)**: ``rgw`` (including daemon, user and bucket management).
- **NFS**: ``nfs-ganesha`` exports.

By default all features come enabled.

To retrieve a list of features and their current statuses:

.. prompt:: bash $

   ceph dashboard feature status

::

  Feature 'cephfs': 'enabled'
  Feature 'iscsi': 'enabled'
  Feature 'mirroring': 'enabled'
  Feature 'rbd': 'enabled'
  Feature 'rgw': 'enabled'
  Feature 'nfs': 'enabled'

To enable or disable the status of a single or multiple features:

.. prompt:: bash $

   ceph dashboard feature disable iscsi mirroring

:: 

  Feature 'iscsi': disabled
  Feature 'mirroring': disabled

After a feature status has changed, the API REST endpoints immediately respond to
that change, while for the front-end UI elements, it may take up to 20 seconds to
reflect it.