Files
podman/pkg/trust/config.go
baude e9a17da1c5 v2trust set and show
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>
2020-05-07 09:55:52 -05:00

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"`
}