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.
37 lines
1.3 KiB
Go
37 lines
1.3 KiB
Go
package container
|
|
|
|
import (
|
|
"github.com/containers/image/v5/docker/reference"
|
|
"github.com/opencontainers/go-digest"
|
|
)
|
|
|
|
// A Spec is the specification of how to get a specific
|
|
// container from a Source and under what LocalName to
|
|
// store it in an image. The container is identified by
|
|
// at the Source via Digest and ImageID. The latter one
|
|
// should remain the same in the target image as well.
|
|
type Spec struct {
|
|
Source string // does not include the manifest digest
|
|
Digest string // digest of the manifest at the Source
|
|
TLSVerify *bool // controls TLS verification
|
|
ImageID string // container image identifier
|
|
LocalName string // name to use inside the image
|
|
ListDigest string // digest of the list manifest at the Source (optional)
|
|
}
|
|
|
|
// NewSpec creates a new Spec from the essential information.
|
|
// It also converts is the transition point from container
|
|
// specific types (digest.Digest) to generic types (string).
|
|
func NewSpec(source reference.Named, digest, imageID digest.Digest, tlsVerify *bool, listDigest string, localName string) Spec {
|
|
if localName == "" {
|
|
localName = source.String()
|
|
}
|
|
return Spec{
|
|
Source: source.Name(),
|
|
Digest: digest.String(),
|
|
TLSVerify: tlsVerify,
|
|
ImageID: imageID.String(),
|
|
LocalName: localName,
|
|
ListDigest: listDigest,
|
|
}
|
|
}
|