mirror of https://github.com/easzlab/kubeasz.git
17 lines
422 B
Django/Jinja
17 lines
422 B
Django/Jinja
{
|
|
"registry-mirrors": ["{{ REG_MIRROR_1 }}", "{{ REG_MIRROR_2 }}"],
|
|
"max-concurrent-downloads": 10,
|
|
"log-driver": "{{ LOG_DRIVER }}",
|
|
"log-level": "{{ LOG_LEVEL }}",
|
|
"log-opts": {
|
|
"max-size": "{{ LOG_MAX_SIZE }}",
|
|
"max-file": "{{ LOG_MAX_FILE }}"
|
|
},
|
|
"data-root": "{{ STORAGE_DIR }}"
|
|
|
|
{% if ENABLE_REMOTE_API %}
|
|
, "hosts": ["tcp://0.0.0.0:2376", "unix:///var/run/docker.sock"]
|
|
{% endif %}
|
|
|
|
}
|