Skip to content

Commit 3340b41

Browse files
committed
docs: Include encryption at rest in Ceph OSD example
1 parent 82bc63d commit 3340b41

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

doc/source/configuration/cephadm.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ OSD specification
107107
~~~~~~~~~~~~~~~~~
108108

109109
The following example is a basic OSD spec that adds OSDs for all
110-
available disks:
110+
available disks with encryption at rest:
111111

112112
.. code:: yaml
113113
@@ -118,6 +118,7 @@ available disks:
118118
host_pattern: "*"
119119
data_devices:
120120
all: true
121+
encrypted: true
121122
122123
More information about OSD service placement is available
123124
`here <https://docs.ceph.com/en/quincy/cephadm/services/osd/#advanced-osd-service-specifications>`__.

etc/kayobe/environments/ci-multinode/cephadm.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
###############################################################################
33
# Cephadm deployment configuration.
44

5+
# Ceph release name.
6+
cephadm_ceph_release: "{{ 'quincy' if (ansible_facts['distribution_release'] == 'jammy' or ansible_facts.distribution_major_version == '9') else 'pacific' }}"
7+
8+
# Ceph container image tag.
9+
cephadm_image_tag: "{{ 'v17.2.7' if cephadm_ceph_release == 'quincy' else 'v16.2.14' }}"
10+
511
# Ceph OSD specification.
612
cephadm_osd_spec:
713
service_type: osd

0 commit comments

Comments
 (0)