Remove all the internal package that are now in the github.com/osbuild/images package and vendor it. A new function in internal/blueprint/ converts from an osbuild-composer blueprint to an images blueprint. This is necessary for keeping the blueprint implementation in both packages. In the future, the images package will change the blueprint (and most likely rename it) and it will only be part of the osbuild-composer internals and interface. The Convert() function will be responsible for converting the blueprint into the new configuration object.
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package manifest
|
|
|
|
import (
|
|
"github.com/osbuild/images/pkg/artifact"
|
|
"github.com/osbuild/images/pkg/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(Distro) []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)
|
|
}
|