registries.conf 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # {{ ansible_managed }}
  2. # This is a system-wide configuration file used to
  3. # keep track of registries for various container backends.
  4. # It adheres to YAML format and does not support recursive
  5. # lists of registries.
  6. # The default location for this configuration file is /etc/containers/registries.conf.
  7. # The only valid categories are: 'registries', 'insecure_registries',
  8. # and 'block_registries'.
  9. #registries:
  10. # - registry.access.redhat.com
  11. {% if l2_docker_additional_registries %}
  12. registries:
  13. {% for reg in l2_docker_additional_registries %}
  14. - {{ reg }}
  15. {% endfor %}
  16. {% endif %}
  17. # If you need to access insecure registries, uncomment the section below
  18. # and add the registries fully-qualified name. An insecure registry is one
  19. # that does not have a valid SSL certificate or only does HTTP.
  20. #insecure_registries:
  21. # -
  22. {% if l2_docker_insecure_registries %}
  23. insecure_registries:
  24. {% for reg in l2_docker_insecure_registries %}
  25. - {{ reg }}
  26. {% endfor %}
  27. {% endif %}
  28. # If you need to block pull access from a registry, uncomment the section below
  29. # and add the registries fully-qualified name.
  30. #block_registries:
  31. # -
  32. {% if l2_docker_blocked_registries %}
  33. block_registries:
  34. {% for reg in l2_docker_blocked_registries %}
  35. - {{ reg }}
  36. {% endfor %}
  37. {% endif %}