1
0
Fork 0
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:
Calvin Bui 2025-11-05 08:03:44 +11:00 committed by GitHub
parent 633b86d353
commit b1a60bf8b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -127,7 +127,7 @@ ARGUMENTS_SPEC_CONTAINER = dict(
kernel_memory=dict(type="str"), kernel_memory=dict(type="str"),
label=dict(type="dict", aliases=["labels"]), label=dict(type="dict", aliases=["labels"]),
label_file=dict(type="str"), 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_level=dict(type="str", choices=["debug", "info", "warn", "error", "fatal", "panic"]),
log_opt=dict( log_opt=dict(
type="dict", type="dict",

View file

@ -661,6 +661,8 @@ options:
- k8s-file - k8s-file
- journald - journald
- json-file - json-file
- passthrough
- none
log_level: log_level:
description: description:
- Logging level for Podman. Log messages above specified level - Logging level for Podman. Log messages above specified level