mirror of
https://github.com/containers/podman.git
synced 2025-06-28 22:53:21 +08:00

Auto updates using the "registry" policy require container to be created with a fully-qualified image reference. Short names are not supported due the ambiguity of their source registry. Initially, container creation errored out for non FQN images but it seems that Podman has regressed. Fixes: #15879 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
10 lines
350 B
Go
10 lines
350 B
Go
package define
|
|
|
|
// AutoUpdateLabel denotes the container/pod label key to specify auto-update
|
|
// policies in container labels.
|
|
const AutoUpdateLabel = "io.containers.autoupdate"
|
|
|
|
// AutoUpdateAuthfileLabel denotes the container label key to specify authfile
|
|
// in container labels.
|
|
const AutoUpdateAuthfileLabel = "io.containers.autoupdate.authfile"
|