diff options
author | fabientot <fabienheureux@deuxfleurs.fr> | 2025-01-08 20:30:09 +0000 |
---|---|---|
committer | fabientot <fabienheureux@deuxfleurs.fr> | 2025-01-08 20:30:09 +0000 |
commit | b6aaebaf4c28ae12a518154b396e6e17449484db (patch) | |
tree | 0e2cbe442de28d365f7c8ae802500b1591231da2 | |
parent | 7bbc8fec504cbfff21210a435d36cb2051e031a9 (diff) | |
download | garage-b6aaebaf4c28ae12a518154b396e6e17449484db.tar.gz garage-b6aaebaf4c28ae12a518154b396e6e17449484db.zip |
The version flag is required when applying a layoutupdate-quickstart-docs-layout-apply
I followed the documentation and got an error if the layout's version was not specified
```
garage layout apply
Error: Internal error:
Please pass the new layout version number to ensure that you are writing the correct version of the cluster layout.
To know the correct value of the new layout version, invoke `garage layout show` and review the proposed changes.
```
This fixes that
-rw-r--r-- | doc/book/quick-start/_index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/book/quick-start/_index.md b/doc/book/quick-start/_index.md index 5f17447b..b5eb646f 100644 --- a/doc/book/quick-start/_index.md +++ b/doc/book/quick-start/_index.md @@ -199,7 +199,7 @@ For instance here you could write just `garage layout assign -z dc1 -c 1G 563e`. The layout then has to be applied to the cluster, using: ```bash -garage layout apply +garage layout apply --version 1 ``` |