You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
448 B

  1. [[registry]]
  2. prefix = "{{ item.prefix | default(item.location) }}"
  3. insecure = {{ item.insecure | default('false') | string | lower }}
  4. blocked = {{ item.blocked | default('false') | string | lower }}
  5. location = "{{ item.location }}"
  6. {% if item.mirrors is defined %}
  7. {% for mirror in item.mirrors %}
  8. [[registry.mirror]]
  9. location = "{{ mirror.location }}"
  10. insecure = {{ mirror.insecure | default('false') | string | lower }}
  11. {% endfor %}
  12. {% endif %}