registries.conf.j2 975 B

123456789101112131415161718192021222324252627
  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 TOML 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.search', 'registries.insecure',
  8. # and 'registries.block'.
  9. [registries.search]
  10. registries = [{{ l_additional_crio_registries|default("") }}]
  11. # If you need to access insecure registries, add the registry's fully-qualified name.
  12. # An insecure registry is one that does not have a valid SSL certificate or only does HTTP.
  13. [registries.insecure]
  14. registries = [{{ l_insecure_crio_registries|default("") }}]
  15. # If you need to block pull access from a registry, uncomment the section below
  16. # and add the registries fully-qualified name.
  17. #
  18. # Docker only
  19. [registries.block]
  20. registries = {{ l2_docker_blocked_registries | to_json }}