Skip to content

Commit d4d7e66

Browse files
Merge pull request #669 from TheLocehiliosan/Support-multiple-mirrors-659
Support multiple mirrors #659
2 parents 80a32fd + 1a7e3e8 commit d4d7e66

File tree

8 files changed

+46
-10
lines changed

8 files changed

+46
-10
lines changed

REFERENCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ Default value: `$docker::params::tmp_dir`
769769

770770
##### `registry_mirror`
771771

772-
Data type: `Optional[String]`
772+
Data type: `Optional[Variant[String,Array]]`
773773

774774
Sets the prefered container registry mirror.
775775

lib/puppet/parser/functions/docker_service_flags.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,14 @@ module Puppet::Parser::Functions
7676
flags << "-H '#{opts['host_socket']}'"
7777
end
7878

79-
if opts['registry_mirror'] && opts['registry_mirror'].to_s != 'undef'
80-
flags << "--registry-mirror='#{opts['registry_mirror']}'"
79+
if opts['registry_mirror'].is_a? Array
80+
opts['registry_mirror'].each do |param|
81+
flags << "--registry-mirror='#{param}'"
82+
end
83+
else
84+
if opts['registry_mirror'] && opts['registry_mirror'].to_s != 'undef'
85+
flags << "--registry-mirror='#{opts['registry_mirror']}'"
86+
end
8187
end
8288

8389
if opts['image'] && opts['image'].to_s != 'undef'

manifests/init.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@
470470
Optional[Variant[String,Boolean]] $service_after_override = $docker::params::service_after_override,
471471
Optional[Boolean] $service_hasstatus = $docker::params::service_hasstatus,
472472
Optional[Boolean] $service_hasrestart = $docker::params::service_hasrestart,
473-
Optional[String] $registry_mirror = $docker::params::registry_mirror,
473+
Optional[Variant[String,Array]] $registry_mirror = $docker::params::registry_mirror,
474474
Boolean $acknowledge_unsupported_os = false,
475475

476476
# Windows specific parameters

spec/acceptance/docker_spec.rb

+21
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,27 @@ class { 'docker':
234234
end
235235
end
236236

237+
context 'When registry_mirror is array', win_broken: broken do
238+
let(:pp) do
239+
"
240+
class { 'docker':
241+
registry_mirror => ['http://testmirror1.io', 'http://testmirror2.io']
242+
}
243+
"
244+
end
245+
246+
it 'applies with no errors' do
247+
apply_manifest(pp, catch_failures: true)
248+
end
249+
250+
it 'has all registry mirrors set' do
251+
run_shell('ps -aux | grep docker') do |r|
252+
expect(r.stdout).to match(%r{--registry-mirror=http:\/\/testmirror1.io})
253+
expect(r.stdout).to match(%r{--registry-mirror=http:\/\/testmirror2.io})
254+
end
255+
end
256+
end
257+
237258
context 'registry' do
238259
let(:registry_address) do
239260
"#{registry_host}:#{registry_port}"

spec/helper/get_docker_service_flags.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,14 @@ def get_docker_service_flags(args)
6969
flags << "-H '#{args['host_socket']}'"
7070
end
7171

72-
if args['registry_mirror'] && args['registry_mirror'].to_s != 'undef'
73-
flags << "--registry-mirror='#{args['registry_mirror']}'"
72+
if args['registry_mirror'].is_a? Array
73+
args['registry_mirror'].each do |param|
74+
flags << "--registry-mirror='#{param}'"
75+
end
76+
else
77+
if args['registry_mirror'] && args['registry_mirror'].to_s != 'undef'
78+
flags << "--registry-mirror='#{args['registry_mirror']}'"
79+
end
7480
end
7581

7682
if args['image'] && args['image'].to_s != 'undef'

templates/etc/default/docker.erb

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ DOCKER_OPTS="\
4040
<% if @execdriver %> -e <%= @execdriver %> <% end -%>
4141
<% if @bip %> --bip=<%= @bip %> <% end -%>
4242
<% if @mtu %> --mtu=<%= @mtu %> <% end -%>
43-
<% if @registry_mirror %> --registry-mirror=<%= @registry_mirror %><% end -%>
43+
<% if @registry_mirror.is_a? String %> --registry-mirror=<%= @registry_mirror %><% end -%>
44+
<% if @registry_mirror.is_a? Array %><% @registry_mirror.each do |param| %> --registry-mirror=<%= param %><% end %><% end -%>
4445
<% if @storage_driver %> --storage-driver=<%= @storage_driver %><% end -%>
4546
<% if @storage_driver == 'devicemapper' -%>
4647
<%- if @dm_basesize %> --storage-opt dm.basesize=<%= @dm_basesize %><% end -%>

templates/etc/sysconfig/docker.systemd.erb

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ OPTIONS="<% if @root_dir %><%= @root_dir_flag %> <%= @root_dir %><% end -%>
99
--iptables=<%= @iptables -%>
1010
--ip-masq=<%= @ip_masq -%>
1111
<% unless @icc == nil %> --icc=<%= @icc %><% end -%>
12-
<% if @registry_mirror %> --registry-mirror=<%= @registry_mirror %><% end -%>
12+
<% if @registry_mirror.is_a? String %> --registry-mirror=<%= @registry_mirror %><% end -%>
13+
<% if @registry_mirror.is_a? Array %><% @registry_mirror.each do |param| %> --registry-mirror=<%= param %><% end %><% end -%>
1314
<% if @fixed_cidr %> --fixed-cidr <%= @fixed_cidr %><% end -%>
1415
<% if @default_gateway %> --default-gateway <%= @default_gateway %><% end -%>
1516
<% if @ipv6 %> --ipv6<% end -%>

templates/windows/config/daemon.json.erb

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
<% if @socket_group %>"group": "<%= @socket_group %>",<% end -%>
1414
<% if @bridge %>"bridge": "<%= @bridge %>",<% end -%>
1515
<% if @fixed_cidr %>"fixed-cidr": "<%= @fixed_cidr %>",<% end -%>
16-
<% if @registry_mirror %>"registry-mirrors": ["<%= @registry_mirror%>"], <% end -%>
16+
<% if @registry_mirror.is_a? String %>"registry-mirrors": ["<%= @registry_mirror %>"], <% end -%>
17+
<% if @registry_mirror.is_a? Array %>"registry-mirrors": ["<%= @registry_mirror.join('", "') %>"], <% end -%>
1718
<% if @extra_parameters %><% @extra_parameters_array.each do |param| %>
1819
<%= param %> ,<% end %>
1920
<% end -%>
2021
<% if @root_dir %>"data-root": "<%= @root_dir %>",<% end -%>
2122
"labels": <%= @labels_array.to_json %>
22-
}
23+
}

0 commit comments

Comments
 (0)