diff options
author | Alex Schultz <aschultz@redhat.com> | 2017-08-24 10:07:23 -0600 |
---|---|---|
committer | Alex Schultz <aschultz@redhat.com> | 2017-08-29 02:20:40 +0000 |
commit | e6f31aa6a8d88bc0b0b0f7ae44a8dad1b16d6a50 (patch) | |
tree | 472d4e4af2bc2f25b3922bbf09cf6fb21f4db435 /manifests/profile/base | |
parent | 8a98b52cc86311fe8f1a6c1c420ee5215017309c (diff) |
Enable config for docker daemon debug
Exposes a way to configure the docker daemon with debug enabled.
Change-Id: I654a70c8bb7753679be83d78ca653ed44c3a7395
Related-Bug: #1710533
(cherry picked from commit 44b90c9a79146139cbcbe7f560bd1df667cca780)
Diffstat (limited to 'manifests/profile/base')
-rw-r--r-- | manifests/profile/base/docker.pp | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/manifests/profile/base/docker.pp b/manifests/profile/base/docker.pp index 8cb4cdd..73731ad 100644 --- a/manifests/profile/base/docker.pp +++ b/manifests/profile/base/docker.pp @@ -44,6 +44,10 @@ # [*step*] # step defaults to hiera('step') # +# [*debug*] +# Boolean. Value to configure docker daemon's debug configuration. +# Defaults to false +# # DEPRECATED PARAMETERS # # [*insecure_registry_address*] @@ -62,11 +66,12 @@ # class tripleo::profile::base::docker ( $insecure_registries = undef, - $registry_mirror = false, - $docker_options = '--log-driver=journald --signature-verification=false --iptables=false', - $configure_storage = true, - $storage_options = '-s overlay2', - $step = Integer(hiera('step')), + $registry_mirror = false, + $docker_options = '--log-driver=journald --signature-verification=false --iptables=false', + $configure_storage = true, + $storage_options = '-s overlay2', + $step = Integer(hiera('step')), + $debug = false, # DEPRECATED PARAMETERS $insecure_registry_address = undef, $docker_namespace = undef, @@ -133,6 +138,9 @@ class tripleo::profile::base::docker ( $mirror_changes = [ 'rm dict/entry[. = "registry-mirrors"]', ] } + $debug_changes = ['set dict/entry[. = "debug"] "debug"', + "set dict/entry[. = \"debug\"]/const \"${debug}\"",] + file { '/etc/docker/daemon.json': ensure => 'present', content => '{}', @@ -144,7 +152,7 @@ class tripleo::profile::base::docker ( augeas { 'docker-daemon.json': lens => 'Json.lns', incl => '/etc/docker/daemon.json', - changes => $mirror_changes, + changes => concat($mirror_changes, $debug_changes), subscribe => Package['docker'], notify => Service['docker'], require => File['/etc/docker/daemon.json'], |