diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-16 11:05:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 11:05:33 +0200 |
commit | 0d14d7b7152ac7a0856fcbb2bbc0f7238ab182d6 (patch) | |
tree | bbb75dd846015cb33e2a96b1ea9a6c4ec0d62859 /pkg/domain/entities/images.go | |
parent | b9c47fa40bc503e155a528174974293c6b053ec2 (diff) | |
parent | 2fcd1d7b4dca2619277607da7c8d22e9ec7620a2 (diff) | |
download | podman-0d14d7b7152ac7a0856fcbb2bbc0f7238ab182d6.tar.gz podman-0d14d7b7152ac7a0856fcbb2bbc0f7238ab182d6.tar.bz2 podman-0d14d7b7152ac7a0856fcbb2bbc0f7238ab182d6.zip |
Merge pull request #7624 from QiWang19/policy-option
Supports import&run--signature-policy
Diffstat (limited to 'pkg/domain/entities/images.go')
-rw-r--r-- | pkg/domain/entities/images.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 2a8133680..3a2e762d6 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -259,12 +259,13 @@ type ImageLoadReport struct { } type ImageImportOptions struct { - Changes []string - Message string - Quiet bool - Reference string - Source string - SourceIsURL bool + Changes []string + Message string + Quiet bool + Reference string + SignaturePolicy string + Source string + SourceIsURL bool } type ImageImportReport struct { |