diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-29 13:22:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 13:22:22 +0200 |
commit | f52feded3ce6c1ad2af046ab774fbc2b9c832487 (patch) | |
tree | 227b374d8677368691ac48bab7603771ffecc540 /pkg/domain/entities | |
parent | 3269ee9fea1bab7735a3668db9e6631b4fa933b9 (diff) | |
parent | 32f54a81ed797597827123b671b6e73194354327 (diff) | |
download | podman-f52feded3ce6c1ad2af046ab774fbc2b9c832487.tar.gz podman-f52feded3ce6c1ad2af046ab774fbc2b9c832487.tar.bz2 podman-f52feded3ce6c1ad2af046ab774fbc2b9c832487.zip |
Merge pull request #15988 from sstosh/manifest-annotate-remote
remote: fix manifest add --annotation
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/manifest.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/manifest.go b/pkg/domain/entities/manifest.go index f17079271..7f4b6c25f 100644 --- a/pkg/domain/entities/manifest.go +++ b/pkg/domain/entities/manifest.go @@ -36,7 +36,7 @@ type ManifestAddOptions struct { // ManifestAnnotateOptions provides model for annotating manifest list type ManifestAnnotateOptions struct { // Annotation to add to manifest list - Annotation []string `json:"annotation" schema:"annotation"` + Annotation []string `json:"annotations" schema:"annotations"` // Arch overrides the architecture for the image Arch string `json:"arch" schema:"arch"` // Feature list for the image |