Add puppet apply settings to puppet.conf

We need to exist for a period of time with both agent and apply being
operational so that we can test things appropriately.

This moves agent specific settings to the [agent] section and adds a
[user] section which is used to control puppet apply.

As part of this, we need to add a production environment to all of our
nodes. Doing this in this way will also cover the current puppetmaster,
since puppetmaster is a puppet client.

Change-Id: I550c474d1c51c5795f745630fb91ee8cc1a55e36
This commit is contained in:
Spencer Krum 2015-11-03 23:05:12 -08:00 committed by Monty Taylor
parent f472c1ed6a
commit c9dd65779f
4 changed files with 28 additions and 26 deletions

View File

@ -10,26 +10,6 @@ class openstack_project::puppetmaster (
include logrotate include logrotate
include openstack_project::params include openstack_project::params
file {'/etc/puppet/environments':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
file {'/etc/puppet/environments/production':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
file {'/etc/puppet/environments/production/environment.conf':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/openstack_project/puppetmaster/production_environment.conf',
}
include ansible include ansible
file { '/etc/ansible/hostfile': file { '/etc/ansible/hostfile':

View File

@ -414,6 +414,26 @@ class openstack_project::template (
source => 'puppet:///modules/openstack_project/puppet/hiera.yaml', source => 'puppet:///modules/openstack_project/puppet/hiera.yaml',
replace => true, replace => true,
} }
file {'/etc/puppet/environments':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
file {'/etc/puppet/environments/production':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
file {'/etc/puppet/environments/production/environment.conf':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/openstack_project/puppet/production_environment.conf',
}
########################################################### ###########################################################
} }

View File

@ -3,20 +3,16 @@ logdir=/var/log/puppet
vardir=/var/lib/puppet vardir=/var/lib/puppet
ssldir=/var/lib/puppet/ssl ssldir=/var/lib/puppet/ssl
rundir=/var/run/puppet rundir=/var/run/puppet
server=<%= @puppetmaster_server %> basemodulepath=/etc/puppet/modules
certname=<%= @certname.downcase %> environmentpath = /etc/puppet/environments
pluginsync=true
data_binding_terminus = none data_binding_terminus = none
[master] [master]
# These are needed when the puppetmaster is run by passenger # These are needed when the puppetmaster is run by passenger
# and can safely be removed if webrick is used. # and can safely be removed if webrick is used.
ssl_client_header = SSL_CLIENT_S_DN ssl_client_header = SSL_CLIENT_S_DN
ssl_client_verify_header = SSL_CLIENT_VERIFY ssl_client_verify_header = SSL_CLIENT_VERIFY
reports=store,puppetdb reports=store,puppetdb
basemodulepath = /etc/puppet/modules
environmentpath = /etc/puppet/environments
environmenttimeout = 0 environmenttimeout = 0
<% if @ca_server -%> <% if @ca_server -%>
ca = false ca = false
@ -27,3 +23,9 @@ ca_server = <%= @ca_server %>
report=true report=true
splay=true splay=true
runinterval=600 runinterval=600
server=<%= @puppetmaster_server %>
certname=<%= @certname.downcase %>
pluginsync=true
[user]
reports=puppetdb_file