Skip to content

Commit

Permalink
Upgrade to Consul v0.8.3, with the new ACLs disabled
Browse files Browse the repository at this point in the history
They are not backwards compatible yet, see nubisproject#287

Fixes nubisproject#275
  • Loading branch information
gozer committed May 17, 2017
1 parent 8b9ae4c commit d662922
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions nubis/puppet/consul.pp
Original file line number Diff line number Diff line change
@@ -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,
},
}
Expand Down

0 comments on commit d662922

Please sign in to comment.