Files
podman/pkg/annotations/annotations.go
Sascha Grunert 1901403eda Removing CRI-O related annotations
The annotations should be maintained by CRI-O itself to decouple the
projects from a dependency perspective.

[NO NEW TESTS NEEDED]

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2024-03-12 14:56:06 +01:00

24 lines
636 B
Go

package annotations
const (
// SandboxID is the sandbox ID annotation.
SandboxID = "io.kubernetes.cri-o.SandboxID"
// ContainerManager is the annotation key for indicating the creator and
// manager of the container.
ContainerManager = "io.container.manager"
)
// ContainerType values
const (
// ContainerTypeSandbox represents a pod sandbox container.
ContainerTypeSandbox = "sandbox"
// ContainerTypeContainer represents a container running within a pod.
ContainerTypeContainer = "container"
)
// ContainerManagerLibpod indicates that libpod created and manages the
// container.
const ContainerManagerLibpod = "libpod"