313d4f272c
The below spec implemented in Juno added numerous properties that can be added to Host Aggregates. The Metadata Definitions catalog should include them. https://github.com/openstack/nova-specs/blob/master/specs/juno/per-aggregate-filters.rst Change-Id: Id37028b4b24ab5f6b0c4547a3c1af47bd76e61f6 Closes-bug: 1368032
24 lines
1.0 KiB
JSON
24 lines
1.0 KiB
JSON
{
|
|
"namespace": "OS::Compute::AggregateIoOpsFilter",
|
|
"display_name": "IO Ops per Host",
|
|
"description": "Properties related to the Nova scheduler filter AggregateIoOpsFilter. Filters aggregate hosts based on the number of instances currently changing state. Hosts in the aggregate with too many instances changing state will be filtered out. The filter must be enabled in the Nova scheduler to use these properties.",
|
|
"visibility": "public",
|
|
"protected": true,
|
|
"resource_type_associations": [
|
|
{
|
|
"name": "OS::Nova::Aggregate"
|
|
}
|
|
],
|
|
"properties": {
|
|
"max_io_ops_per_host": {
|
|
"title": "Maximum IO Operations per Host",
|
|
"description": "Prevents hosts in the aggregate that have this many or more instances currently in build, resize, snapshot, migrate, rescue or unshelve to be scheduled for new instances.",
|
|
"type": "integer",
|
|
"readonly": false,
|
|
"default": 8,
|
|
"minimum": 1
|
|
}
|
|
},
|
|
"objects": []
|
|
}
|