Browse Source
Merge pull request #3270 from riverzhang/fix-registry
Merge pull request #3270 from riverzhang/fix-registry
Add insecure_registry config to docker optionspull/3282/merge
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 94 additions and 33 deletions
Unified View
Diff Options
-
58inventory/sample/group_vars/all/docker.yml
-
2roles/docker/.gitignore
-
3roles/docker/defaults/main.yml
-
7roles/download/defaults/main.yml
-
57roles/kubespray-defaults/defaults/main.yaml
@ -1,35 +1,61 @@ |
|||||
## Uncomment this if you want to force overlay/overlay2 as docker storage driver |
## Uncomment this if you want to force overlay/overlay2 as docker storage driver |
||||
## Please note that overlay2 is only supported on newer kernels |
## Please note that overlay2 is only supported on newer kernels |
||||
|
|
||||
#docker_storage_options: -s overlay2 |
#docker_storage_options: -s overlay2 |
||||
|
|
||||
## Uncomment this if you have more than 3 nameservers, then we'll only use the first 3. |
|
||||
|
## Enable docker_container_storage_setup, it will configure devicemapper driver on Centos7 or RedHat7. |
||||
|
docker_container_storage_setup: false |
||||
|
|
||||
|
## It must be define a disk path for docker_container_storage_setup_devs. |
||||
|
## Otherwise docker-storage-setup will be executed incorrectly. |
||||
|
#docker_container_storage_setup_devs: /dev/vdb |
||||
|
|
||||
#docker_dns_servers_strict: false |
|
||||
|
## Uncomment this if you have more than 3 nameservers, then we'll only use the first 3. |
||||
|
docker_dns_servers_strict: false |
||||
|
|
||||
# Path used to store Docker data |
# Path used to store Docker data |
||||
docker_daemon_graph: "/var/lib/docker" |
docker_daemon_graph: "/var/lib/docker" |
||||
|
|
||||
## Used to set docker daemon iptables options to true |
## Used to set docker daemon iptables options to true |
||||
#docker_iptables_enabled: "true" |
|
||||
|
docker_iptables_enabled: "false" |
||||
|
|
||||
## A string of extra options to pass to the docker daemon. |
|
||||
## This string should be exactly as you wish it to appear. |
|
||||
## An obvious use case is allowing insecure-registry access |
|
||||
## to self hosted registries like so: |
|
||||
docker_options: >- |
|
||||
--insecure-registry={{ kube_service_addresses }} --graph={{ docker_daemon_graph }} {{ docker_log_opts }} |
|
||||
{%- if ansible_architecture == "aarch64" and ansible_os_family == "RedHat" %} |
|
||||
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current |
|
||||
--default-runtime=docker-runc --exec-opt native.cgroupdriver=systemd |
|
||||
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current --signature-verification=false |
|
||||
{%- endif -%} |
|
||||
|
# Docker log options |
||||
|
# Rotate container stderr/stdout logs at 50m and keep last 5 |
||||
|
docker_log_opts: "--log-opt max-size=50m --log-opt max-file=5" |
||||
|
|
||||
|
# define docker bin_dir |
||||
docker_bin_dir: "/usr/bin" |
docker_bin_dir: "/usr/bin" |
||||
|
|
||||
|
## An obvious use case is allowing insecure-registry access to self hosted registries. |
||||
|
## Can be ipddress and domain_name. |
||||
|
## example define 172.19.16.11 or mirror.registry.io |
||||
|
#docker_insecure_registries: |
||||
|
# - mirror.registry.io |
||||
|
# - 172.19.16.11 |
||||
|
|
||||
|
## Add other registry,example China registry mirror. |
||||
|
#docker_registry_mirrors: |
||||
|
# - https://registry.docker-cn.com |
||||
|
# - https://mirror.aliyuncs.com |
||||
|
|
||||
## If non-empty will override default system MounFlags value. |
## If non-empty will override default system MounFlags value. |
||||
## This option takes a mount propagation flag: shared, slave |
## This option takes a mount propagation flag: shared, slave |
||||
## or private, which control whether mounts in the file system |
## or private, which control whether mounts in the file system |
||||
## namespace set up for docker will receive or propagate mounts |
## namespace set up for docker will receive or propagate mounts |
||||
## and unmounts. Leave empty for system default |
## and unmounts. Leave empty for system default |
||||
docker_mount_flags: |
|
||||
|
#docker_mount_flags: |
||||
|
|
||||
|
## A string of extra options to pass to the docker daemon. |
||||
|
## This string should be exactly as you wish it to appear. |
||||
|
docker_options: >- |
||||
|
{%- if docker_insecure_registries is defined -%} |
||||
|
{{ docker_insecure_registries | map('regex_replace', '^(.*)$', '--insecure-registry=\1' ) | list | join(' ') }} |
||||
|
{%- endif %} |
||||
|
{% if docker_registry_mirrors is defined -%} |
||||
|
{{ docker_registry_mirrors | map('regex_replace', '^(.*)$', '--registry-mirror=\1' ) | list | join(' ') }} |
||||
|
{%- endif %} |
||||
|
--graph={{ docker_daemon_graph }} {{ docker_log_opts }} |
||||
|
{%- if ansible_architecture == "aarch64" and ansible_os_family == "RedHat" %} |
||||
|
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current |
||||
|
--default-runtime=docker-runc --exec-opt native.cgroupdriver=systemd |
||||
|
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current --signature-verification=false |
||||
|
{%- endif -%} |
@ -1,2 +0,0 @@ |
|||||
.*.swp |
|
||||
.vagrant |
|
Write
Preview
Loading…
Cancel
Save