github.com/containers/podman/v4@v4.9.4/libpod/define/podstate.go (about)

     1  package define
     2  
     3  const (
     4  	// PodStateCreated indicates the pod is created but has not been started
     5  	PodStateCreated = "Created"
     6  	// PodStateErrored indicates the pod is in an errored state where
     7  	// information about it can no longer be retrieved
     8  	PodStateErrored = "Error"
     9  	// PodStateExited indicates the pod ran but has been stopped
    10  	PodStateExited = "Exited"
    11  	// PodStatePaused indicates the pod has been paused
    12  	PodStatePaused = "Paused"
    13  	// PodStateRunning indicates that all of the containers in the pod are
    14  	// running.
    15  	PodStateRunning = "Running"
    16  	// PodStateDegraded indicates that at least one, but not all, of the
    17  	// containers in the pod are running.
    18  	PodStateDegraded = "Degraded"
    19  	// PodStateStopped indicates all of the containers belonging to the pod
    20  	// are stopped.
    21  	PodStateStopped = "Stopped"
    22  )