e80e2511cf
In the context of device tagging, bugs have caused the tag attribute to disappear starting with version 2.33 for block_devices and starting with version 2.37 for network interfaces. In other words, block devices could only be tagged in 2.32 and network interfaces between 2.32 and 2.36 inclusively. This patch documents this behaviour in api-ref and introduces microversion 2.42, which re-adds the tag in all the right places. Change-Id: Ia0869dc6f7f5bd347ccbd0930d1d668d37695a22 Closes-bug: 1658571 Implements: blueprint fix-tag-attribute-disappearing
18 lines
530 B
JSON
18 lines
530 B
JSON
{
|
|
"server" : {
|
|
"name" : "device-tagging-server",
|
|
"flavorRef" : "http://openstack.example.com/flavors/1",
|
|
"networks" : [{
|
|
"uuid" : "ff608d40-75e9-48cb-b745-77bb55b5eaf2",
|
|
"tag": "nic1"
|
|
}],
|
|
"block_device_mapping_v2": [{
|
|
"uuid": "70a599e0-31e7-49b7-b260-868f441e862b",
|
|
"source_type": "image",
|
|
"destination_type": "volume",
|
|
"boot_index": 0,
|
|
"volume_size": "1",
|
|
"tag": "disk1"
|
|
}]
|
|
}
|
|
} |