ansible-playbooks/roles/podman/defaults/main.yml

25 lines
802 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
# Podman bridge network configuration
# Define the network where containers will operate
# Leave empty to use Podman's default dynamic network assignment
# Example: "10.89.0.0/24" if you want to explicitly set it
podman_subnet: ""
# Podman bridge gateway IP (typically .1 of the bridge network)
# Used by services that need to bind to the bridge interface
# Example: "10.89.0.1" for the 10.89.0.0/24 network
podman_subnet_gateway: ""
# Podman bridge interface name (corresponds to the network above)
# Common values: podman0, podman1, etc.
# Only relevant if podman_subnet is set
podman_subnet_iface: podman1