From 295b16bd0e5f033ccda2721e0d966fb982055807 Mon Sep 17 00:00:00 2001 From: Reid Vandewiele Date: Fri, 12 Oct 2018 15:59:04 -0700 Subject: [PATCH] Set a seemingly-required docker::run flag There seems to be a bug in the upstream puppetlabs/docker module. If health_check_interval is not supplied, an invalid flag will be written to the ExecStart script. --- site/profile/manifests/puppet/cd4pe.pp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site/profile/manifests/puppet/cd4pe.pp b/site/profile/manifests/puppet/cd4pe.pp index 1a208fe8..10b4fa62 100644 --- a/site/profile/manifests/puppet/cd4pe.pp +++ b/site/profile/manifests/puppet/cd4pe.pp @@ -3,6 +3,12 @@ ) { include docker + # Set this default because there seems to be a bug in puppetlabs/docker 3.0.0 + # that makes it effectively required. + Docker::Run { + health_check_interval => 30, + } + ['3306', '7000', '8000', '8080', '8081'].each |$port| { firewall { "100 allow cd4pe ${port}": proto => 'tcp',