Update 'rhel-9' distro alias to 'rhel-9.5'

New releases are landing in 9.5 already, so the on-prem version should
reflect that. The service can and does override this using a
configuration.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2024-05-31 14:30:43 +02:00 committed by Tomáš Hozza
parent 695febf39c
commit b01b080565
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ func GetDefaultConfig() *ComposerConfigFile {
DistroAliases: map[string]string{
"rhel-7": "rhel-7.9",
"rhel-8": "rhel-8.10",
"rhel-9": "rhel-9.4",
"rhel-9": "rhel-9.5",
"rhel-10": "rhel-10.0",
},
LogLevel: "info",

View file

@ -73,7 +73,7 @@ func TestDefaultConfig(t *testing.T) {
"rhel-10": "rhel-10.0",
"rhel-7": "rhel-7.9",
"rhel-8": "rhel-8.10",
"rhel-9": "rhel-9.4",
"rhel-9": "rhel-9.5",
}
require.Equal(t, expectedDistroAliases, defaultConfig.DistroAliases)