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.
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package manifest
|
|
|
|
import (
|
|
"github.com/osbuild/osbuild-composer/internal/artifact"
|
|
"github.com/osbuild/osbuild-composer/internal/osbuild"
|
|
)
|
|
|
|
// A VMDK turns a raw image file into vmdk image.
|
|
type VMDK struct {
|
|
Base
|
|
Filename string
|
|
|
|
imgPipeline *RawImage
|
|
}
|
|
|
|
// NewVMDK creates a new VMDK pipeline. imgPipeline is the pipeline producing the
|
|
// raw image. Filename is the name of the produced image.
|
|
func NewVMDK(m *Manifest,
|
|
buildPipeline *Build,
|
|
imgPipeline *RawImage) *VMDK {
|
|
p := &VMDK{
|
|
Base: NewBase(m, "vmdk", buildPipeline),
|
|
imgPipeline: imgPipeline,
|
|
Filename: "image.vmdk",
|
|
}
|
|
if imgPipeline.Base.manifest != m {
|
|
panic("live image pipeline from different manifest")
|
|
}
|
|
buildPipeline.addDependent(p)
|
|
m.addPipeline(p)
|
|
return p
|
|
}
|
|
|
|
func (p *VMDK) serialize() osbuild.Pipeline {
|
|
pipeline := p.Base.serialize()
|
|
|
|
pipeline.AddStage(osbuild.NewQEMUStage(
|
|
osbuild.NewQEMUStageOptions(p.Filename, osbuild.QEMUFormatVMDK, osbuild.VMDKOptions{
|
|
Subformat: osbuild.VMDKSubformatStreamOptimized,
|
|
}),
|
|
osbuild.NewQemuStagePipelineFilesInputs(p.imgPipeline.Name(), p.imgPipeline.Filename),
|
|
))
|
|
|
|
return pipeline
|
|
}
|
|
|
|
func (p *VMDK) getBuildPackages() []string {
|
|
return []string{"qemu-img"}
|
|
}
|
|
|
|
func (p *VMDK) Export() *artifact.Artifact {
|
|
p.Base.export = true
|
|
mimeType := "application/x-vmdk"
|
|
return artifact.New(p.Name(), p.Filename, &mimeType)
|
|
}
|