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
+14
View File
@@ -0,0 +1,14 @@
# Podman registries configuration managed by Ansible
# Unqualified search registries
# These registries will be searched when using short image names (e.g., "redis:alpine")
unqualified-search-registries = [
{% for registry in podman_unqualified_search_registries %}
"{{ registry }}"{{ "," if not loop.last else "" }}
{% endfor %}
]
# Registry configuration
# docker.io
[[registry]]
location = "docker.io"