File tree 9 files changed +26
-13
lines changed
9 files changed +26
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file. The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org ) .
4
4
5
+ ## [ v5.1.0] ( https://github.com/puppetlabs/puppetlabs-docker/tree/v5.1.0 ) - 2022-10-19
6
+
7
+ [ Full Changelog] ( https://github.com/puppetlabs/puppetlabs-docker/compare/v5.0.0...v5.1.0 )
8
+
9
+ ### Added
10
+
11
+ - Add missing extra_systemd_parameters values to docker-run.erb [ #851 ] ( https://github.com/puppetlabs/puppetlabs-docker/pull/851 ) ([ cbowman0] ( https://github.com/cbowman0 ) )
12
+
13
+ ### Fixed
14
+
15
+ - pdksync - (CONT-130) Dropping Support for Debian 9 [ #859 ] ( https://github.com/puppetlabs/puppetlabs-docker/pull/859 ) ([ jordanbreen28] ( https://github.com/jordanbreen28 ) )
16
+ - Change ` stop_wait_time ` value to match Docker default [ #858 ] ( https://github.com/puppetlabs/puppetlabs-docker/pull/858 ) ([ sebcdri] ( https://github.com/sebcdri ) )
17
+
5
18
## [ v5.0.0] ( https://github.com/puppetlabs/puppetlabs-docker/tree/v5.0.0 ) (2022-08-18)
6
19
7
20
[ Full Changelog] ( https://github.com/puppetlabs/puppetlabs-docker/compare/v4.4.0...v5.0.0 )
Original file line number Diff line number Diff line change 40
40
$exec_provider = undef
41
41
}
42
42
43
- $docker_exec_flags = docker_exec_flags( {
43
+ $docker_exec_flags = docker_exec_flags({
44
44
detach => $detach ,
45
45
interactive => $interactive ,
46
46
tty => $tty ,
Original file line number Diff line number Diff line change 58
58
}
59
59
60
60
if $ensure == ' present' {
61
- $docker_plugin_install_flags = docker_plugin_install_flags( {
61
+ $docker_plugin_install_flags = docker_plugin_install_flags({
62
62
plugin_name => $plugin_name ,
63
63
plugin_alias => $plugin_alias ,
64
64
disable_on_install => $disable_on_install ,
79
79
unless => $unless_install ,
80
80
}
81
81
} elsif $ensure == ' absent' {
82
- $docker_plugin_remove_flags = docker_plugin_remove_flags( {
82
+ $docker_plugin_remove_flags = docker_plugin_remove_flags({
83
83
plugin_name => $plugin_name ,
84
84
force_remove => $force_remove ,
85
85
}
98
98
}
99
99
100
100
if $enabled {
101
- $docker_plugin_enable_flags = docker_plugin_enable_flags( {
101
+ $docker_plugin_enable_flags = docker_plugin_enable_flags({
102
102
plugin_name => $plugin_name ,
103
103
plugin_alias => $plugin_alias ,
104
104
timeout => $timeout ,
Original file line number Diff line number Diff line change 309
309
$depends_array = any2array($depends )
310
310
$depend_services_array = any2array($depend_services )
311
311
312
- $docker_run_flags = docker_run_flags( {
312
+ $docker_run_flags = docker_run_flags({
313
313
cpuset => any2array($cpuset ),
314
314
disable_network => $disable_network ,
315
315
dns => any2array($dns ),
Original file line number Diff line number Diff line change 19
19
$docker_command = " ${docker::params::docker_command} secret"
20
20
21
21
if $ensure == ' present' {
22
- $docker_secrets_flags = docker_secrets_flags( {
22
+ $docker_secrets_flags = docker_secrets_flags({
23
23
ensure => $ensure ,
24
24
label => $label ,
25
25
secret_name => $secret_name ,
Original file line number Diff line number Diff line change 112
112
}
113
113
114
114
if $create {
115
- $docker_service_create_flags = docker_service_flags( {
115
+ $docker_service_create_flags = docker_service_flags({
116
116
detach => $detach ,
117
117
env => any2array($env ),
118
118
service_name => $service_name ,
146
146
}
147
147
148
148
if $update {
149
- $docker_service_flags = docker_service_flags( {
149
+ $docker_service_flags = docker_service_flags({
150
150
detach => $detach ,
151
151
env => any2array($env ),
152
152
service_name => $service_name ,
175
175
}
176
176
177
177
if $scale {
178
- $docker_service_flags = docker_service_flags( {
178
+ $docker_service_flags = docker_service_flags({
179
179
service_name => $service_name ,
180
180
replicas => $replicas ,
181
181
extra_params => any2array($extra_params ),
Original file line number Diff line number Diff line change 49
49
}
50
50
51
51
if $ensure == ' present' {
52
- $docker_stack_flags = docker_stack_flags ( {
52
+ $docker_stack_flags = docker_stack_flags ({
53
53
stack_name => $stack_name ,
54
54
bundle_file => $bundle_file ,
55
55
compose_files => $compose_files ,
Original file line number Diff line number Diff line change 101
101
$docker_command = " ${docker::params::docker_command} swarm"
102
102
103
103
if $init {
104
- $docker_swarm_init_flags = docker_swarm_init_flags( {
104
+ $docker_swarm_init_flags = docker_swarm_init_flags({
105
105
init => $init ,
106
106
advertise_addr => $advertise_addr ,
107
107
autolock => $autolock ,
130
130
}
131
131
132
132
if $join {
133
- $docker_swarm_join_flags = docker_swarm_join_flags( {
133
+ $docker_swarm_join_flags = docker_swarm_join_flags({
134
134
join => $join ,
135
135
advertise_addr => $advertise_addr ,
136
136
listen_addr => $listen_addr ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " puppetlabs-docker" ,
3
- "version" : " 5.0 .0" ,
3
+ "version" : " 5.1 .0" ,
4
4
"author" : " puppetlabs" ,
5
5
"summary" : " Module for installing and managing docker" ,
6
6
"license" : " Apache-2.0" ,
You can’t perform that action at this time.
0 commit comments