Add insecure_registry config to docker options
This commit is contained in:
parent
baf1aba239
commit
009d2ffc6c
1 changed files with 10 additions and 3 deletions
|
@ -15,10 +15,17 @@ docker_daemon_graph: "/var/lib/docker"
|
||||||
|
|
||||||
## A string of extra options to pass to the docker daemon.
|
## A string of extra options to pass to the docker daemon.
|
||||||
## This string should be exactly as you wish it to appear.
|
## This string should be exactly as you wish it to appear.
|
||||||
## An obvious use case is allowing insecure-registry access
|
## An obvious use case is allowing insecure-registry access to self hosted registries.
|
||||||
## to self hosted registries like so:
|
## Can be ipddress and domain_name.
|
||||||
|
## example define 172.19.16.11 or mirror.registry.io
|
||||||
|
#insecure_registries:
|
||||||
|
# - mirror.registry.io
|
||||||
|
# - 172.19.16.11
|
||||||
docker_options: >-
|
docker_options: >-
|
||||||
--insecure-registry={{ kube_service_addresses }} --graph={{ docker_daemon_graph }} {{ docker_log_opts }}
|
{%- if insecure_registries is defined %}
|
||||||
|
{{ insecure_registries | map('regex_replace', '^(.*)$', '--insecure-registry=\1' ) | list | join(' ') }}
|
||||||
|
{%- endif -%}
|
||||||
|
--graph={{ docker_daemon_graph }} {{ docker_log_opts }}
|
||||||
{%- if ansible_architecture == "aarch64" and ansible_os_family == "RedHat" %}
|
{%- if ansible_architecture == "aarch64" and ansible_os_family == "RedHat" %}
|
||||||
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current
|
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current
|
||||||
--default-runtime=docker-runc --exec-opt native.cgroupdriver=systemd
|
--default-runtime=docker-runc --exec-opt native.cgroupdriver=systemd
|
||||||
|
|
Loading…
Reference in a new issue