Created
April 18, 2013 13:14
-
-
Save domcleal/5412586 to your computer and use it in GitHub Desktop.
foreman-installer + puppetdb
This file contains hidden or 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
| # fmnet/manifests/puppetdb.pp | |
| class fmnet::puppetdb { | |
| Postgresql_psql { | |
| cwd => "/", | |
| } | |
| postgresql::db { 'puppetdb': | |
| user => 'puppetdb', | |
| password => 'puppetdb', | |
| grant => 'all', | |
| before => Class['puppetdb::server'], | |
| require => Class['::postgresql::server'], | |
| } | |
| } |
This file contains hidden or 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
| classes: | |
| "puppetdb::server": | |
| listen_address: "0.0.0.0" | |
| "fmnet::puppetdb": | |
| "puppetdb::master::config": | |
| manage_storeconfigs: false | |
| restart_puppet: false | |
| foreman_installer: | |
| answers: /etc/foreman-installer/answers-foreman.fm.example.net.yaml |
This file contains hidden or 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
| # Format: | |
| # <classname>: false - don't include this class | |
| # <classname>: true - include and use the defaults | |
| # <classname>: | |
| # <param>: <value> - include and override the default(s) | |
| # | |
| # See params.pp in each class for what options are available | |
| --- | |
| foreman: true | |
| puppet: true | |
| puppetmaster: | |
| storeconfigs: true | |
| storeconfigs_backend: puppetdb | |
| foreman_proxy: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment