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:
parent
4a47ad36af
commit
a9e8ea2a21
13 changed files with 43051 additions and 4 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue