Bump the service version for get-me-a-network support

The REST API is going to be checking that all computes
in the deployment are running new enough code to support
network requests with the special 'auto' and 'none' values
for Get Me a Network, so we need to bump the service version
which can be used as the minimum version to check.

Part of blueprint get-me-a-network

Change-Id: Ia1af75422d5e1fd4535c1ed9703d855239282559
This commit is contained in:
Matt Riedemann 2016-05-19 17:22:26 -04:00
parent d7320be2e2
commit df0a4e0990
2 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@
"disabled_reason": null,
"report_count": 1,
"forced_down": false,
"version": 11
"version": 12
}
},
"event_type": "service.update",

View File

@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
# NOTE(danms): This is the global service version counter
SERVICE_VERSION = 11
SERVICE_VERSION = 12
# NOTE(danms): This is our SERVICE_VERSION history. The idea is that any
@ -76,6 +76,9 @@ SERVICE_VERSION_HISTORY = (
{'compute_rpc': '4.11'},
# Version 11: Removed migration_id from live_migration_force_complete
{'compute_rpc': '4.12'},
# Version 12: The network APIs and compute manager support a NetworkRequest
# object where the network_id value is 'auto' or 'none'.
{'compute_rpc': '4.12'},
)