Update osbuild/images v0.59.0
Pulling in: - https://github.com/osbuild/images/pull/650 - https://github.com/osbuild/images/pull/651
This commit is contained in:
parent
57f701587d
commit
cf75093163
9 changed files with 357 additions and 22 deletions
9
vendor/github.com/osbuild/images/pkg/distro/rhel/images.go
generated
vendored
9
vendor/github.com/osbuild/images/pkg/distro/rhel/images.go
generated
vendored
|
|
@ -524,7 +524,7 @@ func EdgeInstallerImage(workload workload.Workload,
|
|||
|
||||
img.Product = t.Arch().Distro().Product()
|
||||
img.Variant = "edge"
|
||||
img.OSName = "rhel"
|
||||
img.OSName = "rhel-edge"
|
||||
img.OSVersion = t.Arch().Distro().OsVersion()
|
||||
img.Release = fmt.Sprintf("%s %s", t.Arch().Distro().Product(), t.Arch().Distro().OsVersion())
|
||||
img.FIPS = customizations.GetFIPS()
|
||||
|
|
@ -561,7 +561,7 @@ func EdgeRawImage(workload workload.Workload,
|
|||
URL: options.OSTree.URL,
|
||||
ContentURL: options.OSTree.ContentURL,
|
||||
}
|
||||
img.OSName = "redhat"
|
||||
img.OSName = "rhel-edge"
|
||||
|
||||
// TODO: move generation into LiveImage
|
||||
pt, err := t.GetPartitionTable(customizations.GetFilesystems(), options, rng)
|
||||
|
|
@ -603,7 +603,7 @@ func EdgeSimplifiedInstallerImage(workload workload.Workload,
|
|||
URL: options.OSTree.URL,
|
||||
ContentURL: options.OSTree.ContentURL,
|
||||
}
|
||||
rawImg.OSName = "redhat"
|
||||
rawImg.OSName = "rhel-edge"
|
||||
|
||||
// TODO: move generation into LiveImage
|
||||
pt, err := t.GetPartitionTable(customizations.GetFilesystems(), options, rng)
|
||||
|
|
@ -641,7 +641,7 @@ func EdgeSimplifiedInstallerImage(workload workload.Workload,
|
|||
d := t.arch.distro
|
||||
img.Product = d.product
|
||||
img.Variant = "edge"
|
||||
img.OSName = "redhat"
|
||||
img.OSName = "rhel-edge"
|
||||
img.OSVersion = d.osVersion
|
||||
|
||||
installerConfig, err := t.getDefaultInstallerConfig()
|
||||
|
|
@ -708,7 +708,6 @@ func ImageInstallerImage(workload workload.Workload,
|
|||
|
||||
d := t.arch.distro
|
||||
img.Product = d.product
|
||||
img.OSName = "redhat"
|
||||
img.OSVersion = d.osVersion
|
||||
img.Release = fmt.Sprintf("%s %s", d.product, d.osVersion)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue