From c5a2f2f7761804cf60ad494054884b15be17bf1a Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Fri, 8 Oct 2021 15:35:30 -0300 Subject: [PATCH] Clear the default value for osd-devices Using /dev/vdb as default can go in conflict when using juju storage to attach devices dynamically as OSD and journal, because juju may be attaching as the first disk a volume that's meant to be used as a journal and making the list of devices overlap. Change-Id: I97c7657a82ea463aa090fc6266a4988c8c6bfeb4 Closes-Bug: #1946504 --- README.md | 4 ++-- config.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b1840933..4139bb33 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ A storage device is destined as an OSD (Object Storage Device). There can be multiple OSDs per storage node (ceph-osd unit). The list of all possible storage devices for the cluster is defined by the -`osd-devices` option (default value is '/dev/vdb'). The below examples can be -used in the `ceph-osd.yaml` configuration file. +`osd-devices` option. The below examples can be used in the `ceph-osd.yaml` +configuration file. Block devices (regular), diff --git a/config.yaml b/config.yaml index e501c232..b7aa2f72 100644 --- a/config.yaml +++ b/config.yaml @@ -56,7 +56,7 @@ options: natively supported config in the charm. osd-devices: type: string - default: /dev/vdb + default: description: | The devices to format and set up as OSD volumes. .