mirror of
https://github.com/containers/podman.git
synced 2025-05-20 16:47:39 +08:00

after the init containers pr merged, it was suggested to use `once` instead of `oneshot` containers as it is more aligned with other terminiology used similarily. [NO TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
39 lines
1.4 KiB
Go
39 lines
1.4 KiB
Go
package define
|
|
|
|
// Valid restart policy types.
|
|
const (
|
|
// RestartPolicyNone indicates that no restart policy has been requested
|
|
// by a container.
|
|
RestartPolicyNone = ""
|
|
// RestartPolicyNo is identical in function to RestartPolicyNone.
|
|
RestartPolicyNo = "no"
|
|
// RestartPolicyAlways unconditionally restarts the container.
|
|
RestartPolicyAlways = "always"
|
|
// RestartPolicyOnFailure restarts the container on non-0 exit code,
|
|
// with an optional maximum number of retries.
|
|
RestartPolicyOnFailure = "on-failure"
|
|
// RestartPolicyUnlessStopped unconditionally restarts unless stopped
|
|
// by the user. It is identical to Always except with respect to
|
|
// handling of system restart, which Podman does not yet support.
|
|
RestartPolicyUnlessStopped = "unless-stopped"
|
|
)
|
|
|
|
// RestartPolicyMap maps between restart-policy valid values to restart policy types
|
|
var RestartPolicyMap = map[string]string{
|
|
"none": RestartPolicyNone,
|
|
RestartPolicyNo: RestartPolicyNo,
|
|
RestartPolicyAlways: RestartPolicyAlways,
|
|
RestartPolicyOnFailure: RestartPolicyOnFailure,
|
|
RestartPolicyUnlessStopped: RestartPolicyUnlessStopped,
|
|
}
|
|
|
|
// InitContainerTypes
|
|
const (
|
|
// AlwaysInitContainer is an init container than runs on each
|
|
// pod start (including restart)
|
|
AlwaysInitContainer = "always"
|
|
// OneShotInitContainer is a container that only runs as init once
|
|
// and is then deleted.
|
|
OneShotInitContainer = "once"
|
|
)
|