diff options
author | Kefu Chai <kchai@redhat.com> | 2020-03-13 14:02:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 14:02:58 +0100 |
commit | 13b74bfccd5dbe56feb42652fc521d583c344bf9 (patch) | |
tree | 5251772e2aee3b6f6321a3b81084f28b2659687c | |
parent | Merge pull request #33867 from dillaman/wip-43590 (diff) | |
parent | doc/releases: use h3 for rendering subsections in release notes (diff) | |
download | ceph-13b74bfccd5dbe56feb42652fc521d583c344bf9.tar.xz ceph-13b74bfccd5dbe56feb42652fc521d583c344bf9.zip |
Merge pull request #33940 from tchaikov/octopus-release-notes-header
doc: use subsection for representing components in release notes
Reviewed-by: Sage Weil <sage@redhat.com>
-rw-r--r-- | doc/_static/css/custom.css | 4 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/releases/octopus.rst | 15 |
3 files changed, 17 insertions, 6 deletions
diff --git a/doc/_static/css/custom.css b/doc/_static/css/custom.css new file mode 100644 index 00000000000..bb77b4f7253 --- /dev/null +++ b/doc/_static/css/custom.css @@ -0,0 +1,4 @@ +ul.simple > li { + margin-block-begin : 1em; + margin-block-end : 1em; +} diff --git a/doc/conf.py b/doc/conf.py index f5fb6ffc975..6ed0f7ee5f6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -43,7 +43,9 @@ html_static_path = ["_static"] html_sidebars = { '**': ['smarttoc.html', 'searchbox.html'], } - +html_css_files = [ + 'css/custom.css', +] sys.path.insert(0, os.path.abspath('_ext')) extensions = [ diff --git a/doc/releases/octopus.rst b/doc/releases/octopus.rst index 3bcf969e73b..2684344cbc4 100644 --- a/doc/releases/octopus.rst +++ b/doc/releases/octopus.rst @@ -8,7 +8,8 @@ These are draft notes for the upcoming Octopus release. Major Changes from Nautilus --------------------------- -- *General*: +General +~~~~~~~ * A new deployment tool called **cephadm** has been introduced that integrates Ceph daemon deployment and management via containers @@ -21,7 +22,8 @@ Major Changes from Nautilus * Health alerts are now raised for recent Ceph daemons crashes. -- *Dashboard*: +Dashboard +~~~~~~~~~ The :ref:`mgr-dashboard` has gained a lot of new features and functionality: @@ -86,7 +88,8 @@ Major Changes from Nautilus - List configured Prometheus alerts -- *RADOS*: +RADOS +~~~~~ * Objects can now be brought in sync during recovery by copying only the modified portion of the object, reducing tail latencies during @@ -107,7 +110,8 @@ Major Changes from Nautilus scalable fashion. -- *RBD* block storage: +*RBD* block storage +~~~~~~~~~~~~~~~~~~~ * Clone operations now preserve the sparseness of the underlying RBD image. * The trash feature has been improved to (optionally) automatically @@ -117,7 +121,8 @@ Major Changes from Nautilus * Caching has been improved to be more efficient and performant. -- *RGW* object storage: +*RGW* object storage +~~~~~~~~~~~~~~~~~~~~ * Multi-site replication can now be managed on a per-bucket basis (EXPERIMENTAL). * WORM? |