mirror of
https://github.com/containers/podman.git
synced 2025-09-23 13:13:42 +08:00

Update the common and buildah vendor to pull in the platform code move. [NO NEW TESTS NEEDED] Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
12 lines
312 B
Go
12 lines
312 B
Go
package define
|
|
|
|
// PlatformPolicy controls the behavior of image-platform matching.
|
|
type PlatformPolicy int
|
|
|
|
const (
|
|
// Only debug log if an image does not match the expected platform.
|
|
PlatformPolicyDefault PlatformPolicy = iota
|
|
// Warn if an image does not match the expected platform.
|
|
PlatformPolicyWarn
|
|
)
|