diff options
author | Qi Wang <qiwan@redhat.com> | 2020-10-21 09:51:35 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-10-21 10:00:08 -0400 |
commit | b898f914a3a9b8cad5519ace0167d738e2f85186 (patch) | |
tree | 19c8a7dcc25b5375c4e0fd8010f62ee34d743cd9 /pkg/domain/entities | |
parent | 94873a237ab52db27916b8954e489fe780eea069 (diff) | |
download | podman-b898f914a3a9b8cad5519ace0167d738e2f85186.tar.gz podman-b898f914a3a9b8cad5519ace0167d738e2f85186.tar.bz2 podman-b898f914a3a9b8cad5519ace0167d738e2f85186.zip |
save image remove signatures
remove signatures to podman save since the image formats do not support signatures
Close: #7659
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 982fa0cc0..101542a98 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -300,6 +300,8 @@ type ImageSaveOptions struct { MultiImageArchive bool // Output - write image to the specified path. Output string + // Do not save the signature from the source image + RemoveSignatures bool // Quiet - suppress output when copying images Quiet bool } |