diff options
author | Qi Wang <qiwan@redhat.com> | 2020-09-21 18:10:36 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-12-11 14:15:56 -0500 |
commit | 6730556e2f6f98a2eef6914ffadabf8a46aef749 (patch) | |
tree | 5101540d3211e73855e87532432224cda9b22d30 /pkg/domain/entities | |
parent | b0a287ce46ee8326d25efc1e3b9d690eb1e1bbab (diff) | |
download | podman-6730556e2f6f98a2eef6914ffadabf8a46aef749.tar.gz podman-6730556e2f6f98a2eef6914ffadabf8a46aef749.tar.bz2 podman-6730556e2f6f98a2eef6914ffadabf8a46aef749.zip |
Sign multi-arch images
podman image sign handles muti-arch images.
--all option to create signature for each manifest from the image manifest list.
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 81f12bff7..1538cbb8b 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -344,6 +344,7 @@ type SignOptions struct { Directory string SignBy string CertDir string + All bool } // SignReport describes the result of signing |