mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

add podman image trust set and show Signed-off-by: baude <bbaude@redhat.com> Signed-off-by: bbaude <bbaude@DESKTOP-SH5EG3J.localdomain> Signed-off-by: Brent Baude <bbaude@redhat.com>
13 lines
423 B
Go
13 lines
423 B
Go
package trust
|
|
|
|
// Trust Policy describes a basic trust policy configuration
|
|
type TrustPolicy struct {
|
|
Name string `json:"name"`
|
|
RepoName string `json:"repo_name,omitempty"`
|
|
Keys []string `json:"keys,omitempty"`
|
|
SignatureStore string `json:"sigstore"`
|
|
Transport string `json:"transport"`
|
|
Type string `json:"type"`
|
|
GPGId string `json:"gpg_id,omitempty"`
|
|
}
|