For now this encapsulates osbuild export and filename in that exported tree. In the future we could add MIME type. For now this is a concrete type, but should probably be an interface, so the consumer of artefacts know they are the right type. Enforcing we only push AMIs to EC2, etc. Similarly to how checkpoints work, each pipeline can be marked for export, and the manifest can return all the names of the exported pipelines, to be passed to osbuild. Additionally, the Export function returns an artefact object, which can be used to know how to access the exports once osbuild is done. For now, this is unused.
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package manifest
|
|
|
|
import (
|
|
"github.com/osbuild/osbuild-composer/internal/artifact"
|
|
"github.com/osbuild/osbuild-composer/internal/osbuild"
|
|
)
|
|
|
|
// A QCOW2 turns a raw image file into qcow2 image.
|
|
type QCOW2 struct {
|
|
Base
|
|
Filename string
|
|
Compat string
|
|
|
|
imgPipeline *RawImage
|
|
}
|
|
|
|
// NewQCOW2 createsa new QCOW2 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 qcow2 image.
|
|
func NewQCOW2(m *Manifest,
|
|
buildPipeline *Build,
|
|
imgPipeline *RawImage) *QCOW2 {
|
|
p := &QCOW2{
|
|
Base: NewBase(m, "qcow2", buildPipeline),
|
|
imgPipeline: imgPipeline,
|
|
Filename: "image.qcow2",
|
|
}
|
|
if imgPipeline.Base.manifest != m {
|
|
panic("live image pipeline from different manifest")
|
|
}
|
|
buildPipeline.addDependent(p)
|
|
m.addPipeline(p)
|
|
return p
|
|
}
|
|
|
|
func (p *QCOW2) serialize() osbuild.Pipeline {
|
|
pipeline := p.Base.serialize()
|
|
|
|
pipeline.AddStage(osbuild.NewQEMUStage(
|
|
osbuild.NewQEMUStageOptions(p.Filename,
|
|
osbuild.QEMUFormatQCOW2,
|
|
osbuild.QCOW2Options{
|
|
Compat: p.Compat,
|
|
}),
|
|
osbuild.NewQemuStagePipelineFilesInputs(p.imgPipeline.Name(), p.imgPipeline.Filename),
|
|
))
|
|
|
|
return pipeline
|
|
}
|
|
|
|
func (p *QCOW2) getBuildPackages() []string {
|
|
return []string{"qemu-img"}
|
|
}
|
|
|
|
func (p *QCOW2) Export() *artifact.Artifact {
|
|
p.Base.export = true
|
|
mimeType := "application/x-qemu-disk"
|
|
return artifact.New(p.Name(), p.Filename, &mimeType)
|
|
}
|