summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-08-25 16:11:50 -0400
committerGitHub <noreply@github.com>2022-08-25 16:11:50 -0400
commitbb7ae54ef70fb7af401aee3ff20000ae60854e09 (patch)
treefbdc8cf83bd93d294841fca325ccb4ef71601ca1 /docs/source
parentf98215c668746e9a7b9603448428cd1301a56eac (diff)
parent61fe95bb4fa7b6f83cd2a013877664db90cd773b (diff)
downloadpodman-bb7ae54ef70fb7af401aee3ff20000ae60854e09.tar.gz
podman-bb7ae54ef70fb7af401aee3ff20000ae60854e09.tar.bz2
podman-bb7ae54ef70fb7af401aee3ff20000ae60854e09.zip
Merge pull request #15466 from mtrmac/image-trust-sigstore
podman image trust overhaul, incl. sigstore
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/markdown/podman-image-trust.1.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-image-trust.1.md b/docs/source/markdown/podman-image-trust.1.md
index 4e80bdcf5..2a7da82cc 100644
--- a/docs/source/markdown/podman-image-trust.1.md
+++ b/docs/source/markdown/podman-image-trust.1.md
@@ -32,7 +32,8 @@ Trust **type** provides a way to:
Allowlist ("accept") or
Denylist ("reject") registries or
-Require signature (“signedBy”).
+Require a simple signing signature (“signedBy”),
+Require a sigstore signature ("sigstoreSigned").
Trust may be updated using the command **podman image trust set** for an existing trust scope.
@@ -45,12 +46,14 @@ Trust may be updated using the command **podman image trust set** for an existin
#### **--pubkeysfile**, **-f**=*KEY1*
A path to an exported public key on the local system. Key paths
will be referenced in policy.json. Any path to a file may be used but locating the file in **/etc/pki/containers** is recommended. Options may be used multiple times to
- require an image be signed by multiple keys. The **--pubkeysfile** option is required for the **signedBy** type.
+ require an image be signed by multiple keys. The **--pubkeysfile** option is required for the **signedBy** and **sigstoreSigned** types.
#### **--type**, **-t**=*value*
The trust type for this policy entry.
Accepted values:
- **signedBy** (default): Require signatures with corresponding list of
+ **signedBy** (default): Require simple signing signatures with corresponding list of
+ public keys
+ **sigstoreSigned**: Require sigstore signatures with corresponding list of
public keys
**accept**: do not require any signatures for this
registry scope