diff options
author | Steam <steam11.a167@gmail.com> | 2022-03-19 18:03:23 +0100 |
---|---|---|
committer | Steam <steam11.a167@gmail.com> | 2022-03-19 18:03:23 +0100 |
commit | 15da2156f6d34df3b031662b0fb7487bfd1b2181 (patch) | |
tree | 87e54fdff514de20266070ca692c513ca1a2c31b /doc/book | |
parent | 0529f3c34dee78f54dbd3a384120f9b3bacb9501 (diff) | |
download | garage-15da2156f6d34df3b031662b0fb7487bfd1b2181.tar.gz garage-15da2156f6d34df3b031662b0fb7487bfd1b2181.zip |
Change position of the node-id argument
Diffstat (limited to 'doc/book')
-rw-r--r-- | doc/book/cookbook/real-world.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/book/cookbook/real-world.md b/doc/book/cookbook/real-world.md index 1178ded5..81f3349f 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -261,10 +261,10 @@ have 66% chance of being stored by Venus and 33% chance of being stored by Mercu Given the information above, we will configure our cluster as follow: ```bash -garage layout assign -z par1 -c 10 -t mercury 563e -garage layout assign -z par1 -c 20 -t venus 86f0 -garage layout assign -z lon1 -c 20 -t earth 6814 -garage layout assign -z bru1 -c 15 -t mars 212f +garage layout assign 563e -z par1 -c 10 -t mercury +garage layout assign 86f0 -z par1 -c 20 -t venus +garage layout assign 6814 -z lon1 -c 20 -t earth +garage layout assign 212f -z bru1 -c 15 -t mars ``` At this point, the changes in the cluster layout have not yet been applied. |