Created
June 25, 2014 20:02
-
-
Save DBMoUK/3d1da44a80b640a5240c to your computer and use it in GitHub Desktop.
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
--- | |
# The resolvable name that agent systems will use as the puppet master. | |
# Literally, the configuration value of the `server` setting in the [agent] | |
# section of puppet.conf. Typically this will be a load-balanced DNS name. If | |
# only one puppet master is being deployed, it may be set to the resolvable | |
# name of the puppet master. | |
:puppet: "loadbalancer.puppetlabs.vm" | |
# The resolvable name of the server to install the puppet CA service on. | |
:ca: "ca.puppetlabs.vm" | |
# The resolvable name of server to install PuppetDB on. | |
:puppetdb: "puppetdb.puppetlabs.vm" | |
# A list of servers (resolvable names) to configure as puppet catalog compile | |
# masters. | |
:compile: | |
- "compilemaster1.puppetlabs.vm" | |
- "compilemaster2.puppetlabs.vm" | |
- "compilemaster3.puppetlabs.vm" | |
# The resolvable name of the server to install the ActiveMQ (hub) service on. | |
:mcohub: "ca.puppetlabs.vm" | |
# A list of servers (resolvable names) to configure as ActiveMQ (spoke) | |
# servers. | |
:mcospoke: | |
- "mcospoke1.puppetlabs.vm" | |
- "mcospoke2.puppetlabs.vm" | |
- "mcospoke3.puppetlabs.vm" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment