mirror of
https://github.com/containers/podman.git
synced 2025-11-03 07:47:19 +08:00
Update the recent events-log changes to fix the build error. [NO NEW TESTS NEEDED] since there's no functional change. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
14 lines
341 B
Go
14 lines
341 B
Go
package manifests
|
|
|
|
import (
|
|
"github.com/containers/image/v5/signature"
|
|
)
|
|
|
|
// storageAllowedPolicyScopes overrides the policy for local storage
|
|
// to ensure that we can read images from it.
|
|
var storageAllowedPolicyScopes = signature.PolicyTransportScopes{
|
|
"": []signature.PolicyRequirement{
|
|
signature.NewPRInsecureAcceptAnything(),
|
|
},
|
|
}
|