Last active
December 27, 2015 02:39
-
-
Save intjonathan/7254263 to your computer and use it in GitHub Desktop.
puppetdb with newer postgres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class { "postgresql::globals": | |
version => '9.3', | |
manage_package_repo => true, | |
} | |
# This installs postgres for you | |
class { '::puppetdb': | |
database_password => hiera('profile::puppetdb::pg_puppetdb_password'), | |
java_args => {'-Xmx' => '2g', '-Xms' => '2g'}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment