From c31240ee31c54546d06a5f11c4519b8b12914401 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 7 Oct 2016 11:11:55 -0700 Subject: [PATCH] Disable puppetdb on the puppetmaster We don't need the puppetmaster to send anything to puppetdb since we don't use the puppetmaster any more -- reports are injected into puppetdb with ansible now. Actual puppetdb connections from puppet only happened with 'puppet apply' running on the puppetmaster, making it undesirably special. Disable it. Change-Id: I7df300d71ccfeb3698f5ccb97a73ba37ab4c57e0 --- manifests/site.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/site.pp b/manifests/site.pp index 33af232531..e31e78765a 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -184,6 +184,7 @@ node 'puppetmaster.openstack.org' { class { 'openstack_project::puppetmaster': root_rsa_key => hiera('puppetmaster_root_rsa_key'), puppetmaster_clouds => hiera('puppetmaster_clouds'), + puppetdb => false, } }