Skip to content
Snippets Groups Projects
Commit cd3ab26e authored by Iustin Pop's avatar Iustin Pop
Browse files

Modify the beparams constants

Memory is renamed for easier use.

Reviewed-by: ultrotter
parent 8705eb96
No related branches found
No related tags found
No related merge requests found
...@@ -276,10 +276,16 @@ HVS_PARAMETERS = frozenset([ ...@@ -276,10 +276,16 @@ HVS_PARAMETERS = frozenset([
]) ])
# BE parameter names # BE parameter names
BE_MEMSIZE = "memory" BE_MEMORY = "memory"
BE_VCPUS = "vcpus" BE_VCPUS = "vcpus"
BE_AUTOBALANCE = "auto_balance" BE_AUTOBALANCE = "auto_balance"
BES_PARAMETERS = frozenset([
BE_MEMORY,
BE_VCPUS,
BE_AUTOBALANCE,
])
# BE GROUP # BE GROUP
BEGR_DEFAULT = "default" BEGR_DEFAULT = "default"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment