debian-forge-composer/vendor/github.com/osbuild/images/pkg/manifest/vpc.go
Achilleas Koutsou 1f21f8e217 go.mod: update osbuild/images to v0.87.0
Update osbuild/images to include:
- blueprint: remove the sshkey customization
  (https://github.com/osbuild/images/pull/928).
- [RHEL-9] Drop RHSM and RHUI-specific config from Azure and EC2 images
  (COMPOSER-2308) (https://github.com/osbuild/images/pull/857).
2024-09-17 23:33:44 +02:00

65 lines
1.5 KiB
Go

package manifest
import (
"github.com/osbuild/images/pkg/artifact"
"github.com/osbuild/images/pkg/osbuild"
)
// A VPC turns a raw image file into qemu-based image format, such as vhd.
type VPC struct {
Base
filename string
ForceSize *bool
imgPipeline FilePipeline
}
func (p VPC) Filename() string {
return p.filename
}
func (p *VPC) SetFilename(filename string) {
p.filename = filename
}
// NewVPC createsa new Qemu pipeline. imgPipeline is the pipeline producing the
// raw image. The pipeline name is the name of the new pipeline. Filename is the name
// of the produced image.
func NewVPC(buildPipeline Build, imgPipeline FilePipeline) *VPC {
p := &VPC{
Base: NewBase("vpc", buildPipeline),
imgPipeline: imgPipeline,
filename: "image.vhd",
}
// vpc can run outside the build pipeline for e.g. "bib"
if buildPipeline != nil {
buildPipeline.addDependent(p)
} else {
imgPipeline.Manifest().addPipeline(p)
}
return p
}
func (p *VPC) serialize() osbuild.Pipeline {
pipeline := p.Base.serialize()
formatOptions := osbuild.VPCOptions{ForceSize: p.ForceSize}
pipeline.AddStage(osbuild.NewQEMUStage(
osbuild.NewQEMUStageOptions(p.Filename(), osbuild.QEMUFormatVPC, formatOptions),
osbuild.NewQemuStagePipelineFilesInputs(p.imgPipeline.Name(), p.imgPipeline.Filename()),
))
return pipeline
}
func (p *VPC) getBuildPackages(Distro) []string {
return []string{"qemu-img"}
}
func (p *VPC) Export() *artifact.Artifact {
p.Base.export = true
mimeType := "application/x-vhd"
return artifact.New(p.Name(), p.Filename(), &mimeType)
}