From 51a6f5de2ebe1b681fff49396cc577de6ca0c95e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Peliz=C3=A4us?= Date: Thu, 18 Jun 2026 09:38:09 +0200 Subject: [PATCH] doc/how-to/initialize: Clarify how to configure CephFS vols as image/backup store MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A user might not be aware that it's crucial to set the config per cluster member. So instead of mentioning it at the bottom, use the --target key specifically. Otherwise a user would need to know that he needs to go to each cluster member to set the config key. Signed-off-by: Julian Pelizäus --- doc/how-to/initialize.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/how-to/initialize.md b/doc/how-to/initialize.md index 07436492f..10a58e94f 100644 --- a/doc/how-to/initialize.md +++ b/doc/how-to/initialize.md @@ -276,18 +276,18 @@ lxc storage volume create remote-fs backups # for instances operations lxc storage volume create remote-fs images # for images operations ``` -Once the storage volumes are created, set them as the values for the {ref}`configuration options ` of `storage.images_volume` and `storage.backups_volume`. This example syntax uses `remote-fs` as the storage pool, along with volumes named `images` and `backup`: +Once the storage volumes are created, set them as the values for the `storage.images_volume` and `storage.backups_volume` {ref}`configuration options `. +This example syntax uses `remote-fs` as the storage pool, along with volumes named `images` and `backups`. +Repeat these steps for each cluster member: ```bash -lxc config set storage.images_volume=remote-fs/images -lxc config set storage.backups_volume=remote-fs/backups +lxc config set storage.images_volume=remote-fs/images --target +lxc config set storage.backups_volume=remote-fs/backups --target ``` To view the set values, run: ```bash -lxc config get storage.backups_volume -lxc config get storage.images_volume +lxc config get storage.backups_volume --target +lxc config get storage.images_volume --target ``` - -Repeat these steps on each cluster member.