From d662922d3f272b9c47683caefa24ce712177ec30 Mon Sep 17 00:00:00 2001 From: "Philippe M. Chiasson" Date: Wed, 17 May 2017 11:32:12 -0400 Subject: [PATCH] Upgrade to Consul v0.8.3, with the new ACLs disabled They are not backwards compatible yet, see #287 Fixes #275 --- nubis/puppet/consul.pp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/nubis/puppet/consul.pp b/nubis/puppet/consul.pp index 5dfb06f..6472cce 100644 --- a/nubis/puppet/consul.pp +++ b/nubis/puppet/consul.pp @@ -1,24 +1,25 @@ class { 'consul': - version => '0.7.5', + version => '0.8.3', purge_config_dir => false, manage_service => false, service_enable => false, service_ensure => 'stopped', config_hash => { - 'data_dir' => '/var/lib/consul', - 'log_level' => 'INFO', - 'ui_dir' => '/var/lib/consul/ui', - 'client_addr' => '0.0.0.0', - 'leave_on_terminate' => true, - 'server' => true, - 'enable_syslog' => true, - 'telemetry' => { + 'data_dir' => '/var/lib/consul', + 'log_level' => 'INFO', + 'ui_dir' => '/var/lib/consul/ui', + 'client_addr' => '0.0.0.0', + 'leave_on_terminate' => true, + 'server' => true, + 'enable_syslog' => true, + 'acl_enforce_version_8' => false, + 'telemetry' => { 'dogstatsd_addr' => '127.0.0.1:8125', 'statsd_address' => '127.0.0.1:9125', 'disable_hostname' => true, }, - 'dns_config' => { + 'dns_config' => { 'enable_truncate' => true, }, }