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.