2017-11-01 11:24:59 -04:00
|
|
|
package annotations
|
|
|
|
|
|
|
|
|
|
const (
|
2022-03-21 15:15:52 +01:00
|
|
|
// SandboxID is the sandbox ID annotation.
|
2017-11-01 11:24:59 -04:00
|
|
|
SandboxID = "io.kubernetes.cri-o.SandboxID"
|
|
|
|
|
|
2019-09-03 11:10:01 +02:00
|
|
|
// ContainerManager is the annotation key for indicating the creator and
|
2022-03-21 15:15:52 +01:00
|
|
|
// manager of the container.
|
2019-09-03 11:10:01 +02:00
|
|
|
ContainerManager = "io.container.manager"
|
2017-11-01 11:24:59 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ContainerType values
|
|
|
|
|
const (
|
2022-03-21 15:15:52 +01:00
|
|
|
// ContainerTypeSandbox represents a pod sandbox container.
|
2017-11-01 11:24:59 -04:00
|
|
|
ContainerTypeSandbox = "sandbox"
|
|
|
|
|
|
2022-03-21 15:15:52 +01:00
|
|
|
// ContainerTypeContainer represents a container running within a pod.
|
2017-11-01 11:24:59 -04:00
|
|
|
ContainerTypeContainer = "container"
|
|
|
|
|
)
|
2019-09-03 11:10:01 +02:00
|
|
|
|
|
|
|
|
// ContainerManagerLibpod indicates that libpod created and manages the
|
2022-03-21 15:15:52 +01:00
|
|
|
// container.
|
2019-09-03 11:10:01 +02:00
|
|
|
const ContainerManagerLibpod = "libpod"
|