mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-09 11:47:47 +03:00
add crio registry mirror support (#6977)
* add crio registry mirror support * mdlint fix
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
[[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 %}
|
||||
Reference in New Issue
Block a user