Files
ansible-playbooks/roles/podman/defaults/main.yml
T
2026-05-29 21:24:58 +02:00

26 lines
898 B
YAML

---
podman_projects_dir: /opt/podman
# Unqualified search registries (for short image names like "redis:alpine")
podman_unqualified_search_registries:
- docker.io
- quay.io
- ghcr.io
# OCI Runtime
# crun (default, modern C runtime - fast) or runc (original Go runtime)
podman_runtime: crun
# Container logging configuration
# Log driver: journald (systemd journal) or k8s-file (JSON files)
podman_log_driver: journald
# k8s-file driver settings (only used when podman_log_driver: k8s-file)
podman_log_max_size: 10mb # Max size per log file before rotation
podman_log_max_files: 5 # Max number of rotated log files to keep
# Host gateway address exposed inside rootless containers (pasta --map-host-loopback)
# Containers can connect to this address to reach services bound to host loopback.
# Pasta translates the destination to 127.0.0.1 on the host side.
podman_gw_gateway: 100.64.0.1