fix readme python code

This commit is contained in:
Quentin 2023-11-22 18:51:47 +01:00
parent 1428c6d627
commit f3cc4f21dc
Signed by: quentin
GPG Key ID: E9602264D639FF68
1 changed files with 5 additions and 4 deletions

View File

@ -55,13 +55,14 @@ print(f"running garage {status.garage_version}, node_id {status.node}")
# Change layout of this node
current = layout.get_layout()
layout.add_layout({
status.node: NodeClusterInfo(
layout.add_layout([
NodeRoleChange(
id = status.node,
zone = "dc1",
capacity = 1,
capacity = 1000000000,
tags = [ "dev" ],
)
})
])
layout.apply_layout(LayoutVersion(
version = current.version + 1
))