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 /test/e2e/sign/policy.json | |
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 'test/e2e/sign/policy.json')
-rw-r--r-- | test/e2e/sign/policy.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/e2e/sign/policy.json b/test/e2e/sign/policy.json new file mode 100644 index 000000000..ab01137bf --- /dev/null +++ b/test/e2e/sign/policy.json @@ -0,0 +1,18 @@ +{ + "default": [ + { + "type": "insecureAcceptAnything" + } + ], + "transports": { + "docker": { + "localhost:5000": [ + { + "type": "signedBy", + "keyType": "GPGKeys", + "keyPath": "/tmp/key.gpg" + } + ] + } + } +} |