mirror of
https://github.com/containers/podman.git
synced 2025-11-03 07:47:19 +08:00
Vendor in latest containers(common, storage,image, buildah)
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
7
vendor/github.com/containers/common/libimage/copier.go
generated
vendored
7
vendor/github.com/containers/common/libimage/copier.go
generated
vendored
@ -12,7 +12,6 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/containers/common/libimage/manifests"
|
||||
"github.com/containers/common/libimage/platform"
|
||||
"github.com/containers/common/pkg/config"
|
||||
"github.com/containers/common/pkg/retry"
|
||||
@ -32,12 +31,6 @@ const (
|
||||
defaultRetryDelay = time.Second
|
||||
)
|
||||
|
||||
// LookupReferenceFunc return an image reference based on the specified one.
|
||||
// The returned reference can return custom ImageSource or ImageDestination
|
||||
// objects which intercept or filter blobs, manifests, and signatures as
|
||||
// they are read and written.
|
||||
type LookupReferenceFunc = manifests.LookupReferenceFunc
|
||||
|
||||
// CopyOptions allow for customizing image-copy operations.
|
||||
type CopyOptions struct {
|
||||
// If set, will be used for copying the image. Fields below may
|
||||
|
||||
31
vendor/github.com/containers/common/libimage/manifest_list.go
generated
vendored
31
vendor/github.com/containers/common/libimage/manifest_list.go
generated
vendored
@ -6,6 +6,7 @@ import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"maps"
|
||||
"slices"
|
||||
"time"
|
||||
|
||||
@ -20,7 +21,6 @@ import (
|
||||
structcopier "github.com/jinzhu/copier"
|
||||
"github.com/opencontainers/go-digest"
|
||||
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"golang.org/x/exp/maps"
|
||||
)
|
||||
|
||||
// NOTE: the abstractions and APIs here are a first step to further merge
|
||||
@ -238,9 +238,7 @@ func (m *ManifestList) Inspect() (*define.ManifestListData, error) {
|
||||
for i, manifest := range ociFormat.Manifests {
|
||||
inspectList.Manifests[i].Annotations = manifest.Annotations
|
||||
inspectList.Manifests[i].ArtifactType = manifest.ArtifactType
|
||||
if manifest.URLs != nil {
|
||||
inspectList.Manifests[i].URLs = slices.Clone(manifest.URLs)
|
||||
}
|
||||
inspectList.Manifests[i].URLs = slices.Clone(manifest.URLs)
|
||||
inspectList.Manifests[i].Data = manifest.Data
|
||||
inspectList.Manifests[i].Files, err = m.list.Files(manifest.Digest)
|
||||
if err != nil {
|
||||
@ -252,10 +250,7 @@ func (m *ManifestList) Inspect() (*define.ManifestListData, error) {
|
||||
if platform == nil {
|
||||
platform = &imgspecv1.Platform{}
|
||||
}
|
||||
var osFeatures []string
|
||||
if platform.OSFeatures != nil {
|
||||
osFeatures = slices.Clone(platform.OSFeatures)
|
||||
}
|
||||
osFeatures := slices.Clone(platform.OSFeatures)
|
||||
inspectList.Subject = &define.ManifestListDescriptor{
|
||||
Platform: manifest.Schema2PlatformSpec{
|
||||
OS: platform.OS,
|
||||
@ -483,23 +478,23 @@ func (m *ManifestList) AddArtifact(ctx context.Context, options *ManifestListAdd
|
||||
|
||||
// Options for annotating a manifest list.
|
||||
type ManifestListAnnotateOptions struct {
|
||||
// Add the specified annotations to the added image.
|
||||
// Add the specified annotations to the added image. Empty values are ignored.
|
||||
Annotations map[string]string
|
||||
// Add the specified architecture to the added image.
|
||||
// Add the specified architecture to the added image. Empty values are ignored.
|
||||
Architecture string
|
||||
// Add the specified features to the added image.
|
||||
// Add the specified features to the added image. Empty values are ignored.
|
||||
Features []string
|
||||
// Add the specified OS to the added image.
|
||||
// Add the specified OS to the added image. Empty values are ignored.
|
||||
OS string
|
||||
// Add the specified OS features to the added image.
|
||||
// Add the specified OS features to the added image. Empty values are ignored.
|
||||
OSFeatures []string
|
||||
// Add the specified OS version to the added image.
|
||||
// Add the specified OS version to the added image. Empty values are ignored.
|
||||
OSVersion string
|
||||
// Add the specified variant to the added image.
|
||||
// Add the specified variant to the added image. Empty values are ignored unless Architecture is set to a non-empty value.
|
||||
Variant string
|
||||
// Add the specified annotations to the index itself.
|
||||
// Add the specified annotations to the index itself. Empty values are ignored.
|
||||
IndexAnnotations map[string]string
|
||||
// Set the subject to which the index refers.
|
||||
// Set the subject to which the index refers. Empty values are ignored.
|
||||
Subject string
|
||||
}
|
||||
|
||||
@ -536,7 +531,7 @@ func (m *ManifestList) AnnotateInstance(d digest.Digest, options *ManifestListAn
|
||||
return err
|
||||
}
|
||||
}
|
||||
if len(options.Variant) > 0 {
|
||||
if len(options.Architecture) != 0 || len(options.Variant) > 0 {
|
||||
if err := m.list.SetVariant(d, options.Variant); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
16
vendor/github.com/containers/common/libimage/manifests/manifests.go
generated
vendored
16
vendor/github.com/containers/common/libimage/manifests/manifests.go
generated
vendored
@ -7,6 +7,7 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"maps"
|
||||
"mime"
|
||||
"net/http"
|
||||
"os"
|
||||
@ -40,7 +41,6 @@ import (
|
||||
imgspec "github.com/opencontainers/image-spec/specs-go"
|
||||
v1 "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"github.com/sirupsen/logrus"
|
||||
"golang.org/x/exp/maps"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -236,11 +236,7 @@ func (l *list) SaveToImage(store storage.Store, imageID string, names []string,
|
||||
// Files returns the list of files associated with a particular artifact
|
||||
// instance in the image index, primarily for display purposes.
|
||||
func (l *list) Files(instanceDigest digest.Digest) ([]string, error) {
|
||||
filesList, ok := l.artifacts.Files[instanceDigest]
|
||||
if ok {
|
||||
return slices.Clone(filesList), nil
|
||||
}
|
||||
return nil, nil
|
||||
return slices.Clone(l.artifacts.Files[instanceDigest]), nil
|
||||
}
|
||||
|
||||
// instanceByFile returns the instanceDigest of the first manifest in the index
|
||||
@ -640,9 +636,7 @@ func (l *list) Add(ctx context.Context, sys *types.SystemContext, ref types.Imag
|
||||
if instanceInfo.OS == "" {
|
||||
instanceInfo.OS = config.OS
|
||||
instanceInfo.OSVersion = config.OSVersion
|
||||
if config.OSFeatures != nil {
|
||||
instanceInfo.OSFeatures = slices.Clone(config.OSFeatures)
|
||||
}
|
||||
instanceInfo.OSFeatures = slices.Clone(config.OSFeatures)
|
||||
}
|
||||
if instanceInfo.Architecture == "" {
|
||||
instanceInfo.Architecture = config.Architecture
|
||||
@ -906,9 +900,7 @@ func (l *list) AddArtifact(ctx context.Context, sys *types.SystemContext, option
|
||||
Subject: subject,
|
||||
}
|
||||
// Add in annotations, more or less exactly as specified.
|
||||
if options.Annotations != nil {
|
||||
artifactManifest.Annotations = maps.Clone(options.Annotations)
|
||||
}
|
||||
artifactManifest.Annotations = maps.Clone(options.Annotations)
|
||||
|
||||
// Encode and save the data we care about.
|
||||
artifactManifestBytes, err := json.Marshal(artifactManifest)
|
||||
|
||||
9
vendor/github.com/containers/common/libimage/types.go
generated
vendored
Normal file
9
vendor/github.com/containers/common/libimage/types.go
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
package libimage
|
||||
|
||||
import "github.com/containers/common/libimage/manifests"
|
||||
|
||||
// LookupReferenceFunc return an image reference based on the specified one.
|
||||
// The returned reference can return custom ImageSource or ImageDestination
|
||||
// objects which intercept or filter blobs, manifests, and signatures as
|
||||
// they are read and written.
|
||||
type LookupReferenceFunc = manifests.LookupReferenceFunc
|
||||
Reference in New Issue
Block a user