forked from osbuild/images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
anaconda: introduce container-installer
A new image type that will use Anaconda to install a container to a filesystem unattended. This initial commit introduces the image without actually making the install unattended, just a bootable ISO.
- Loading branch information
Showing
3 changed files
with
231 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
package image | ||
|
||
import ( | ||
"fmt" | ||
"math/rand" | ||
|
||
"github.com/osbuild/images/internal/common" | ||
"github.com/osbuild/images/pkg/arch" | ||
"github.com/osbuild/images/pkg/artifact" | ||
"github.com/osbuild/images/pkg/container" | ||
"github.com/osbuild/images/pkg/customizations/users" | ||
"github.com/osbuild/images/pkg/disk" | ||
"github.com/osbuild/images/pkg/manifest" | ||
"github.com/osbuild/images/pkg/platform" | ||
"github.com/osbuild/images/pkg/rpmmd" | ||
"github.com/osbuild/images/pkg/runner" | ||
) | ||
|
||
type AnacondaContainerInstaller struct { | ||
Base | ||
Platform platform.Platform | ||
ExtraBasePackages rpmmd.PackageSet | ||
Users []users.User | ||
Groups []users.Group | ||
|
||
SquashfsCompression string | ||
|
||
ISOLabelTempl string | ||
Product string | ||
Variant string | ||
OSName string | ||
Ref string | ||
OSVersion string | ||
Release string | ||
|
||
ContainerSource container.SourceSpec | ||
|
||
Filename string | ||
|
||
AdditionalDracutModules []string | ||
AdditionalAnacondaModules []string | ||
AdditionalDrivers []string | ||
FIPS bool | ||
} | ||
|
||
func NewAnacondaContainerInstaller(container container.SourceSpec, ref string) *AnacondaContainerInstaller { | ||
return &AnacondaContainerInstaller{ | ||
Base: NewBase("container-installer"), | ||
ContainerSource: container, | ||
Ref: ref, | ||
} | ||
} | ||
|
||
func (img *AnacondaContainerInstaller) InstantiateManifest(m *manifest.Manifest, | ||
repos []rpmmd.RepoConfig, | ||
runner runner.Runner, | ||
rng *rand.Rand) (*artifact.Artifact, error) { | ||
buildPipeline := manifest.NewBuild(m, runner, repos, &manifest.BuildOptions{ContainerBuildable: true}) | ||
buildPipeline.Checkpoint() | ||
|
||
anacondaPipeline := manifest.NewAnacondaInstaller(m, | ||
manifest.AnacondaInstallerTypePayload, | ||
buildPipeline, | ||
img.Platform, | ||
repos, | ||
"kernel", | ||
img.Product, | ||
img.OSVersion) | ||
|
||
// This is only built with ELN for now | ||
anacondaPipeline.UseRHELLoraxTemplates = true | ||
|
||
anacondaPipeline.ExtraPackages = img.ExtraBasePackages.Include | ||
anacondaPipeline.ExcludePackages = img.ExtraBasePackages.Exclude | ||
anacondaPipeline.ExtraRepos = img.ExtraBasePackages.Repositories | ||
anacondaPipeline.Users = img.Users | ||
anacondaPipeline.Groups = img.Groups | ||
anacondaPipeline.Variant = img.Variant | ||
anacondaPipeline.Biosdevname = (img.Platform.GetArch() == arch.ARCH_X86_64) | ||
anacondaPipeline.Checkpoint() | ||
anacondaPipeline.AdditionalDracutModules = img.AdditionalDracutModules | ||
anacondaPipeline.AdditionalAnacondaModules = img.AdditionalAnacondaModules | ||
if img.FIPS { | ||
anacondaPipeline.AdditionalAnacondaModules = append( | ||
anacondaPipeline.AdditionalAnacondaModules, | ||
"org.fedoraproject.Anaconda.Modules.Security", | ||
) | ||
} | ||
anacondaPipeline.AdditionalDrivers = img.AdditionalDrivers | ||
|
||
rootfsPartitionTable := &disk.PartitionTable{ | ||
Size: 20 * common.MebiByte, | ||
Partitions: []disk.Partition{ | ||
{ | ||
Start: 0, | ||
Size: 20 * common.MebiByte, | ||
Payload: &disk.Filesystem{ | ||
Type: "vfat", | ||
Mountpoint: "/", | ||
UUID: disk.NewVolIDFromRand(rng), | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
// TODO: replace isoLabelTmpl with more high-level properties | ||
isoLabel := fmt.Sprintf(img.ISOLabelTempl, img.Platform.GetArch()) | ||
|
||
rootfsImagePipeline := manifest.NewISORootfsImg(buildPipeline, anacondaPipeline) | ||
rootfsImagePipeline.Size = 4 * common.GibiByte | ||
|
||
bootTreePipeline := manifest.NewEFIBootTree(m, buildPipeline, img.Product, img.OSVersion) | ||
bootTreePipeline.Platform = img.Platform | ||
bootTreePipeline.UEFIVendor = img.Platform.GetUEFIVendor() | ||
bootTreePipeline.ISOLabel = isoLabel | ||
bootTreePipeline.KernelOpts = []string{fmt.Sprintf("inst.stage2=hd:LABEL=%s", isoLabel), fmt.Sprintf("inst.ks=hd:LABEL=%s:%s", isoLabel, kspath)} | ||
if img.FIPS { | ||
bootTreePipeline.KernelOpts = append(bootTreePipeline.KernelOpts, "fips=1") | ||
} | ||
|
||
// enable ISOLinux on x86_64 only | ||
isoLinuxEnabled := img.Platform.GetArch() == arch.ARCH_X86_64 | ||
|
||
isoTreePipeline := manifest.NewAnacondaInstallerISOTree(buildPipeline, anacondaPipeline, rootfsImagePipeline, bootTreePipeline) | ||
isoTreePipeline.PartitionTable = rootfsPartitionTable | ||
isoTreePipeline.Release = img.Release | ||
isoTreePipeline.OSName = img.OSName | ||
isoTreePipeline.Users = img.Users | ||
isoTreePipeline.Groups = img.Groups | ||
|
||
isoTreePipeline.SquashfsCompression = img.SquashfsCompression | ||
|
||
// For ostree installers, always put the kickstart file in the root of the ISO | ||
isoTreePipeline.KSPath = kspath | ||
isoTreePipeline.PayloadPath = "/container" | ||
|
||
isoTreePipeline.ContainerSource = &img.ContainerSource | ||
isoTreePipeline.ISOLinux = isoLinuxEnabled | ||
if img.FIPS { | ||
isoTreePipeline.KernelOpts = append(isoTreePipeline.KernelOpts, "fips=1") | ||
} | ||
|
||
isoPipeline := manifest.NewISO(buildPipeline, isoTreePipeline, isoLabel) | ||
isoPipeline.SetFilename(img.Filename) | ||
isoPipeline.ISOLinux = isoLinuxEnabled | ||
artifact := isoPipeline.Export() | ||
|
||
return artifact, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters