mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00

vendor in c/common config pkg for containers.conf Signed-off-by: Qi Wang qiwan@redhat.com Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
29 lines
1.0 KiB
Go
29 lines
1.0 KiB
Go
package define
|
|
|
|
import "time"
|
|
|
|
// RuntimeStateStore is a constant indicating which state store implementation
|
|
// should be used by libpod
|
|
type RuntimeStateStore int
|
|
|
|
const (
|
|
// InvalidStateStore is an invalid state store
|
|
InvalidStateStore RuntimeStateStore = iota
|
|
// InMemoryStateStore is an in-memory state that will not persist data
|
|
// on containers and pods between libpod instances or after system
|
|
// reboot
|
|
InMemoryStateStore RuntimeStateStore = iota
|
|
// SQLiteStateStore is a state backed by a SQLite database
|
|
// It is presently disabled
|
|
SQLiteStateStore RuntimeStateStore = iota
|
|
// BoltDBStateStore is a state backed by a BoltDB database
|
|
BoltDBStateStore RuntimeStateStore = iota
|
|
// ContainerCreateTimeout is the timeout before we decide we've failed
|
|
// to create a container.
|
|
// TODO: Make this generic - all OCI runtime operations should use the
|
|
// same timeout, this one.
|
|
// TODO: Consider dropping from 240 to 60 seconds. I don't think waiting
|
|
// 4 minutes versus 1 minute makes a real difference.
|
|
ContainerCreateTimeout = 240 * time.Second
|
|
)
|