diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-09-29 14:15:37 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-09-29 14:16:42 +0200 |
commit | e2fe9eabac61c4d5e1e9095c2cac1982409371d4 (patch) | |
tree | 8da0d9ff7a7a985f3ecd9de5c13190186c1f6839 /pkg/bindings | |
parent | f52feded3ce6c1ad2af046ab774fbc2b9c832487 (diff) | |
download | podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.tar.gz podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.tar.bz2 podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.zip |
Revert "remote: fix manifest add --annotation"
This reverts commit 32f54a81ed797597827123b671b6e73194354327.
`pkg/bindings` is supported outside of podman and we have to keep it
stable.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/bindings')
-rw-r--r-- | pkg/bindings/manifests/manifests.go | 6 | ||||
-rw-r--r-- | pkg/bindings/manifests/types.go | 14 | ||||
-rw-r--r-- | pkg/bindings/manifests/types_add_options.go | 6 | ||||
-rw-r--r-- | pkg/bindings/manifests/types_modify_options.go | 6 |
4 files changed, 16 insertions, 16 deletions
diff --git a/pkg/bindings/manifests/manifests.go b/pkg/bindings/manifests/manifests.go index 0da8df709..d987e51d8 100644 --- a/pkg/bindings/manifests/manifests.go +++ b/pkg/bindings/manifests/manifests.go @@ -11,7 +11,7 @@ import ( "strconv" "strings" - "github.com/containers/common/libimage" + "github.com/containers/image/v5/manifest" imageTypes "github.com/containers/image/v5/types" "github.com/containers/podman/v4/pkg/auth" "github.com/containers/podman/v4/pkg/bindings" @@ -71,7 +71,7 @@ func Exists(ctx context.Context, name string, options *ExistsOptions) (bool, err } // Inspect returns a manifest list for a given name. -func Inspect(ctx context.Context, name string, _ *InspectOptions) (*libimage.ManifestListData, error) { +func Inspect(ctx context.Context, name string, _ *InspectOptions) (*manifest.Schema2List, error) { conn, err := bindings.GetClient(ctx) if err != nil { return nil, err @@ -83,7 +83,7 @@ func Inspect(ctx context.Context, name string, _ *InspectOptions) (*libimage.Man } defer response.Body.Close() - var list libimage.ManifestListData + var list manifest.Schema2List return &list, response.Process(&list) } diff --git a/pkg/bindings/manifests/types.go b/pkg/bindings/manifests/types.go index 501feb5a1..fec3f9d13 100644 --- a/pkg/bindings/manifests/types.go +++ b/pkg/bindings/manifests/types.go @@ -22,7 +22,7 @@ type ExistsOptions struct { // AddOptions are optional options for adding manifest lists type AddOptions struct { All *bool - Annotation []string + Annotation map[string]string Arch *string Features []string Images []string @@ -46,12 +46,12 @@ type ModifyOptions struct { // Operation values are "update", "remove" and "annotate". This allows the service to // efficiently perform each update on a manifest list. Operation *string - All *bool // All when true, operate on all images in a manifest list that may be included in Images - Annotations []string // Annotations to add to manifest list - Arch *string // Arch overrides the architecture for the image - Features []string // Feature list for the image - Images []string // Images is an optional list of images to add/remove to/from manifest list depending on operation - OS *string // OS overrides the operating system for the image + All *bool // All when true, operate on all images in a manifest list that may be included in Images + Annotations map[string]string // Annotations to add to manifest list + Arch *string // Arch overrides the architecture for the image + Features []string // Feature list for the image + Images []string // Images is an optional list of images to add/remove to/from manifest list depending on operation + OS *string // OS overrides the operating system for the image // OS features for the image OSFeatures []string `json:"os_features" schema:"os_features"` // OSVersion overrides the operating system for the image diff --git a/pkg/bindings/manifests/types_add_options.go b/pkg/bindings/manifests/types_add_options.go index b3e8b8134..5ba1cc5fa 100644 --- a/pkg/bindings/manifests/types_add_options.go +++ b/pkg/bindings/manifests/types_add_options.go @@ -33,15 +33,15 @@ func (o *AddOptions) GetAll() bool { } // WithAnnotation set field Annotation to given value -func (o *AddOptions) WithAnnotation(value []string) *AddOptions { +func (o *AddOptions) WithAnnotation(value map[string]string) *AddOptions { o.Annotation = value return o } // GetAnnotation returns value of field Annotation -func (o *AddOptions) GetAnnotation() []string { +func (o *AddOptions) GetAnnotation() map[string]string { if o.Annotation == nil { - var z []string + var z map[string]string return z } return o.Annotation diff --git a/pkg/bindings/manifests/types_modify_options.go b/pkg/bindings/manifests/types_modify_options.go index 12f549577..ab00cb2c5 100644 --- a/pkg/bindings/manifests/types_modify_options.go +++ b/pkg/bindings/manifests/types_modify_options.go @@ -48,15 +48,15 @@ func (o *ModifyOptions) GetAll() bool { } // WithAnnotations set annotations to add to manifest list -func (o *ModifyOptions) WithAnnotations(value []string) *ModifyOptions { +func (o *ModifyOptions) WithAnnotations(value map[string]string) *ModifyOptions { o.Annotations = value return o } // GetAnnotations returns value of annotations to add to manifest list -func (o *ModifyOptions) GetAnnotations() []string { +func (o *ModifyOptions) GetAnnotations() map[string]string { if o.Annotations == nil { - var z []string + var z map[string]string return z } return o.Annotations |