summaryrefslogtreecommitdiff
path: root/cmd/podman/registry
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-07-27 20:46:46 +0200
committerGitHub <noreply@github.com>2021-07-27 20:46:46 +0200
commita6a0f6c192a63f1b0ae6790bc88eb93bd6b7718c (patch)
treea21d60ff1efd78acd03895de0ca27ff754af39fa /cmd/podman/registry
parentb6c279be2296ce32fbb36ba39bd948f93be9bede (diff)
parent63ef5576ed6e99dca3dfef8e8fb6efb5564839a2 (diff)
downloadpodman-a6a0f6c192a63f1b0ae6790bc88eb93bd6b7718c.tar.gz
podman-a6a0f6c192a63f1b0ae6790bc88eb93bd6b7718c.tar.bz2
podman-a6a0f6c192a63f1b0ae6790bc88eb93bd6b7718c.zip
Merge pull request #11061 from giuseppe/migrate-no-move-to-cgroup
command: migrate doesn't move process to cgroup
Diffstat (limited to 'cmd/podman/registry')
-rw-r--r--cmd/podman/registry/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podman/registry/config.go b/cmd/podman/registry/config.go
index 25139a3de..b512ba341 100644
--- a/cmd/podman/registry/config.go
+++ b/cmd/podman/registry/config.go
@@ -15,6 +15,9 @@ import (
)
const (
+ // NoMoveProcess used as cobra.Annotation when command doesn't need Podman to be moved to a separate cgroup
+ NoMoveProcess = "NoMoveProcess"
+
// ParentNSRequired used as cobra.Annotation when command requires root access
ParentNSRequired = "ParentNSRequired"