diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-26 20:45:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 20:45:30 +0200 |
commit | a0c0971e63b42031d05e82c26add5354ae69a7cf (patch) | |
tree | 902c463e0753d9549fd097abbbb001ea15704806 /libpod/define | |
parent | aaeabb0e8cc4aca1c621677f9c73f1757df300c4 (diff) | |
parent | 7bc36602f6c407cffdc799ca1b2fc7c00bc4f93b (diff) | |
download | podman-a0c0971e63b42031d05e82c26add5354ae69a7cf.tar.gz podman-a0c0971e63b42031d05e82c26add5354ae69a7cf.tar.bz2 podman-a0c0971e63b42031d05e82c26add5354ae69a7cf.zip |
Merge pull request #15933 from vrothberg/fix-15879
auto-update: validate container image
Diffstat (limited to 'libpod/define')
-rw-r--r-- | libpod/define/autoupdate.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libpod/define/autoupdate.go b/libpod/define/autoupdate.go new file mode 100644 index 000000000..7c278c3c5 --- /dev/null +++ b/libpod/define/autoupdate.go @@ -0,0 +1,9 @@ +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" |