distro/rhel90: add RHEL9 support

osbuild-composer can now build rhel 9.0 images.
Added support is limited to qcow2 image type.
This commit is contained in:
Jozef Mikovic 2021-03-10 10:39:31 +01:00 committed by Tom Gundersen
parent 4a47ad36af
commit a9e8ea2a21
13 changed files with 43051 additions and 4 deletions

View file

@ -10,6 +10,7 @@ import (
"github.com/osbuild/osbuild-composer/internal/distro/fedora33"
"github.com/osbuild/osbuild-composer/internal/distro/rhel8"
"github.com/osbuild/osbuild-composer/internal/distro/rhel84"
"github.com/osbuild/osbuild-composer/internal/distro/rhel90"
)
// When adding support for a new distribution, add it here.
@ -20,6 +21,7 @@ var supportedDistros = []func() distro.Distro{
rhel8.New,
rhel84.New,
rhel84.NewCentos,
rhel90.New,
}
type Registry struct {