Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker::Services:: fix command parameter used with an array #452

Merged
merged 1 commit into from
Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -801,10 +801,11 @@ docker::services {'redis':
replicas => '5',
mounts => ['type=bind,source=/etc/my-redis.conf,target=/etc/redis/redis.conf,readonly'],
extra_params => ['--update-delay 1m', '--restart-window 30s'],
command => ['redis-server', '--appendonly', 'yes'],
}
```

To base the service off an image, include the `image` parameter and include the `publish` parameter to expose the service port (use an array to specify multiple published ports). To set the amount of containers running in the service, include the `replicas` parameter. To attach one or multiple filesystems to the service, use the `mounts` parameter. For information regarding the `extra_params` parameter, see `docker service create --help`.
To base the service off an image, include the `image` parameter and include the `publish` parameter to expose the service port (use an array to specify multiple published ports). To set the amount of containers running in the service, include the `replicas` parameter. To attach one or multiple filesystems to the service, use the `mounts` parameter. For information regarding the `extra_params` parameter, see `docker service create --help`. The `command` parameter can either be specified as an array or a string.

To update the service, add the following code to the manifest file:

Expand Down
4 changes: 3 additions & 1 deletion lib/puppet/parser/functions/docker_service_flags.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ module Puppet::Parser::Functions
flags << "'#{opts['image']}'"
end

if opts['command'] && opts['command'].to_s != 'undef'
if opts['command'].is_a? Array
flags << opts['command'].join(' ')
elsif opts['command'] && opts['command'].to_s != 'undef'
flags << opts['command'].to_s
end

Expand Down
5 changes: 5 additions & 0 deletions spec/defines/services_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,29 @@
'label' => ['com.example.foo="bar"', 'bar=baz'],
'mounts' => ['type=bind,src=/tmp/a,dst=/tmp/a', 'type=bind,src=/tmp/b,dst=/tmp/b,readonly'],
'networks' => ['overlay'],
'command' => 'echo hello world',
} }
it { is_expected.to compile.with_all_deps }
it { should contain_exec('test_service docker service create').with_command(/docker service create/) }
it { should contain_exec('test_service docker service create').with_command(/--env MY_ENV=1/) }
it { should contain_exec('test_service docker service create').with_command(/--label bar=baz/) }
it { should contain_exec('test_service docker service create').with_command(/--mount type=bind,src=\/tmp\/b,dst=\/tmp\/b,readonly/) }
it { should contain_exec('test_service docker service create').with_command(/--network overlay/) }
it { should contain_exec('test_service docker service create').with_command(/echo hello world/) }

context 'multiple services declaration' do
let(:pre_condition) {
"
docker::services { 'test_service_2':
service_name => 'foo_2',
image => 'foo:bar',
command => ['echo', 'hello', 'world'],
}
"
}
it { should contain_exec('test_service docker service create').with_command(/docker service create/) }
it { should contain_exec('test_service_2 docker service create').with_command(/docker service create/) }
it { should contain_exec('test_service_2 docker service create').with_command(/echo hello world/) }
end

context 'multiple publish ports and multiple networks' do
Expand All @@ -60,6 +64,7 @@
it { should contain_exec('test_service_3 docker service create').with_command(/--network foo_1/) }
it { should contain_exec('test_service_3 docker service create').with_command(/--network foo_2/) }
end

end

context 'with ensure => present and service update' do
Expand Down