summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Natsume <takanattie@gmail.com>2022-09-10 19:42:34 +0900
committerTakashi Natsume <takanattie@gmail.com>2022-09-14 11:31:50 +0000
commita1731927ccd17aeb634c4eed61dce16de16fa7b3 (patch)
treef7c0fbe3daab2cf0748ca0ecb80db55d8f6059ec
parentd02d06529c7d8c868c9ceef7baf573ae9285145a (diff)
downloadnova-a1731927ccd17aeb634c4eed61dce16de16fa7b3.tar.gz
Update min supported service version for Zed
Nova only supports compute services that are not older than version N-1. So in Zed the smallest supported nova compute version is Yoga and the smallest Yoga service version is 61. Change-Id: I4cbe233087577c7754856afcc4e3fe9fdc2d3008 Signed-off-by: Takashi Natsume <takanattie@gmail.com>
-rw-r--r--nova/objects/service.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/objects/service.py b/nova/objects/service.py
index 05aeb1b538..71361e0168 100644
--- a/nova/objects/service.py
+++ b/nova/objects/service.py
@@ -230,11 +230,12 @@ SERVICE_VERSION_HISTORY = (
# This is used to raise an error at service startup if older than N-1 computes
# are detected. Update this at the beginning of every release cycle to point to
# the smallest service version that was added in N-1.
-OLDEST_SUPPORTED_SERVICE_VERSION = 'Xena'
+OLDEST_SUPPORTED_SERVICE_VERSION = 'Yoga'
SERVICE_VERSION_ALIASES = {
'Victoria': 52,
'Wallaby': 54,
'Xena': 57,
+ 'Yoga': 61,
}