mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
add passthrough and none log driver options (#988)
Signed-off-by: Calvin Bui <3604363+calvinbui@users.noreply.github.com>
This commit is contained in:
parent
633b86d353
commit
b1a60bf8b7
2 changed files with 3 additions and 1 deletions
|
|
@ -127,7 +127,7 @@ ARGUMENTS_SPEC_CONTAINER = dict(
|
|||
kernel_memory=dict(type="str"),
|
||||
label=dict(type="dict", aliases=["labels"]),
|
||||
label_file=dict(type="str"),
|
||||
log_driver=dict(type="str", choices=["k8s-file", "journald", "json-file"]),
|
||||
log_driver=dict(type="str", choices=["k8s-file", "journald", "json-file", "passthrough", "none"]),
|
||||
log_level=dict(type="str", choices=["debug", "info", "warn", "error", "fatal", "panic"]),
|
||||
log_opt=dict(
|
||||
type="dict",
|
||||
|
|
|
|||
|
|
@ -661,6 +661,8 @@ options:
|
|||
- k8s-file
|
||||
- journald
|
||||
- json-file
|
||||
- passthrough
|
||||
- none
|
||||
log_level:
|
||||
description:
|
||||
- Logging level for Podman. Log messages above specified level
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue