feat: enhance podman configuration with advances networking

This commit is contained in:
Clément Désiles
2025-11-10 18:23:44 +01:00
parent 2c421611ae
commit 2c8f49191c
4 changed files with 246 additions and 7 deletions
+23
View File
@@ -1 +1,24 @@
---
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