Add missing flavor configuration

Change-Id: If64118f1c9190a6f84fc05cb77530e9d5616f433
This commit is contained in:
Nicholas Jones 2018-06-14 15:29:04 -05:00
parent dba7e29b79
commit f7a52b8a58

View File

@ -169,3 +169,16 @@ flavor_options = {
'valid_nd_vnf_values': ['v8'],
'valid_ss_vnf_values': ['v3']
}
flavor_limits = {
# All flavor limits will be converted to integers, and must not
# have any non-numeric values.
# Root disk, block storage and object storage don't have limits
"vcpu_limit": "64",
# vram_limit is in MB and must be a multiple of 1024
"vram_limit": "393216",
# swap_file_limit is in MB and must be a multiple of 1024
"swap_file_limit": "393216",
# ephemeral_limit is in GB
"ephemeral_limit": "10000",
}