mirror of
https://github.com/containers/podman.git
synced 2025-05-22 09:36:57 +08:00

The third pass of corrections for the APIv2. Signed-off-by: Brent Baude <bbaude@redhat.com>
20 lines
683 B
Go
20 lines
683 B
Go
package define
|
|
|
|
const (
|
|
// PodStateCreated indicates the pod is created but has not been started
|
|
PodStateCreated = "Created"
|
|
// PodStateErrored indicates the pod is in an errored state where
|
|
// information about it can no longer be retrieved
|
|
PodStateErrored = "Error"
|
|
// PodStateExited indicates the pod ran but has been stopped
|
|
PodStateExited = "Exited"
|
|
// PodStatePaused indicates the pod has been paused
|
|
PodStatePaused = "Paused"
|
|
// PodStateRunning indicates that one or more of the containers in
|
|
// the pod is running
|
|
PodStateRunning = "Running"
|
|
// PodStateStopped indicates all of the containers belonging to the pod
|
|
// are stopped.
|
|
PodStateStopped = "Stopped"
|
|
)
|