ed6cef85d8
* add crio registry mirror support * mdlint fix
11 lines
378 B
Django/Jinja
11 lines
378 B
Django/Jinja
[[registry]]
|
|
prefix = "{{ item.prefix }}"
|
|
insecure = {{ item.insecure | d('false') | string | lower }}
|
|
blocked = {{ item.blocked | d('false') | string | lower }}
|
|
location = "{{ item.location | d(item.prefix) }}"
|
|
{% for mirror in item.mirrors %}
|
|
|
|
[[registry.mirror]]
|
|
location = "{{ mirror.location }}"
|
|
insecure = {{ mirror.insecure | d ('false') | string | lower }}
|
|
{% endfor %}
|