local build
This commit is contained in:
parent
4368c22a69
commit
774b56b3f8
@ -506,6 +506,9 @@ log_driver = "journald"
|
|||||||
#
|
#
|
||||||
#num_locks = 2048
|
#num_locks = 2048
|
||||||
|
|
||||||
|
# Set the exit policy of the pod when the last container exits.
|
||||||
|
#pod_exit_policy = "continue"
|
||||||
|
|
||||||
# Whether to pull new image before running a container
|
# Whether to pull new image before running a container
|
||||||
#
|
#
|
||||||
#pull_policy = "missing"
|
#pull_policy = "missing"
|
||||||
|
@ -434,8 +434,15 @@ and the logfile will not be rotated.
|
|||||||
|
|
||||||
**events_logger**="journald"
|
**events_logger**="journald"
|
||||||
|
|
||||||
Default method to use when logging events.
|
The default method to use when logging events.
|
||||||
Valid values: `file`, `journald`, and `none`.
|
|
||||||
|
The default method is different based on the platform that
|
||||||
|
Podman is being run upon. To determine the current value,
|
||||||
|
use this command:
|
||||||
|
|
||||||
|
`podman info --format {{.Host.EventLogger}`
|
||||||
|
|
||||||
|
Valid values are: `file`, `journald`, and `none`.
|
||||||
|
|
||||||
**helper_binaries_dir**=["/usr/libexec/podman", ...]
|
**helper_binaries_dir**=["/usr/libexec/podman", ...]
|
||||||
|
|
||||||
@ -549,6 +556,15 @@ pod consumes one lock. The default number available is 2048. If this is
|
|||||||
changed, a lock renumbering must be performed, using the
|
changed, a lock renumbering must be performed, using the
|
||||||
`podman system renumber` command.
|
`podman system renumber` command.
|
||||||
|
|
||||||
|
**pod_exit_policy**="continue"
|
||||||
|
|
||||||
|
Set the exit policy of the pod when the last container exits. Supported policies are:
|
||||||
|
|
||||||
|
| Exit Policy | Description |
|
||||||
|
| ------------------ | --------------------------------------------------------------------------- |
|
||||||
|
| *continue* | The pod continues running when the last container exits. Used by default. |
|
||||||
|
| *stop* | The pod is stopped when the last container exits. Used in `play kube`. |
|
||||||
|
|
||||||
**pull_policy**="always"|"missing"|"never"
|
**pull_policy**="always"|"missing"|"never"
|
||||||
|
|
||||||
Pull image before running or creating a container. The default is **missing**.
|
Pull image before running or creating a container. The default is **missing**.
|
||||||
|
Loading…
Reference in New Issue
Block a user