forked from rpms/leapp-repository
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
From 7aab954d2ed9fcdd67ceb4c6a783fafbd6021c8a Mon Sep 17 00:00:00 2001
|
|
From: Petr Stodulka <pstodulk@redhat.com>
|
|
Date: Wed, 16 Nov 2022 20:19:34 +0100
|
|
Subject: [PATCH 32/37] Introduce new upgrade paths 8.8/9.2
|
|
|
|
The new enabled upgrade paths are:
|
|
RHEL 7.9 -> 8.8, 8.6 (default: 8.8)
|
|
RHEL 8.8 -> 9.2
|
|
|
|
Keeping some previous upgrade paths still opened, but expecting
|
|
dropping them before the release.
|
|
---
|
|
repos/system_upgrade/common/files/upgrade_paths.json | 7 ++++---
|
|
repos/system_upgrade/common/libraries/config/version.py | 2 +-
|
|
2 files changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/repos/system_upgrade/common/files/upgrade_paths.json b/repos/system_upgrade/common/files/upgrade_paths.json
|
|
index 11d52423..c48d916f 100644
|
|
--- a/repos/system_upgrade/common/files/upgrade_paths.json
|
|
+++ b/repos/system_upgrade/common/files/upgrade_paths.json
|
|
@@ -1,11 +1,12 @@
|
|
{
|
|
"default": {
|
|
"7.6": ["8.4", "8.6"],
|
|
- "7.9": ["8.4", "8.6"],
|
|
+ "7.9": ["8.6", "8.8"],
|
|
"8.6": ["9.0"],
|
|
"8.7": ["9.0"],
|
|
- "7": ["8.4", "8.6"],
|
|
- "8": ["9.0"]
|
|
+ "8.8": ["9.2"],
|
|
+ "7": ["8.6", "8.8"],
|
|
+ "8": ["9.2"]
|
|
},
|
|
"saphana": {
|
|
"7.9": ["8.2", "8.6"],
|
|
diff --git a/repos/system_upgrade/common/libraries/config/version.py b/repos/system_upgrade/common/libraries/config/version.py
|
|
index e148932a..7104bdc5 100644
|
|
--- a/repos/system_upgrade/common/libraries/config/version.py
|
|
+++ b/repos/system_upgrade/common/libraries/config/version.py
|
|
@@ -14,7 +14,7 @@ OP_MAP = {
|
|
_SUPPORTED_VERSIONS = {
|
|
# Note: 'rhel-alt' is detected when on 'rhel' with kernel 4.x
|
|
'7': {'rhel': ['7.9'], 'rhel-alt': ['7.6'], 'rhel-saphana': ['7.9']},
|
|
- '8': {'rhel': ['8.6', '8.7'], 'rhel-saphana': ['8.6']},
|
|
+ '8': {'rhel': ['8.6', '8.7', '8.8'], 'rhel-saphana': ['8.6']},
|
|
}
|
|
|
|
|
|
--
|
|
2.38.1
|
|
|