Skip to content

Instantly share code, notes, and snippets.

@hakamadare
Created February 19, 2014 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakamadare/9095770 to your computer and use it in GitHub Desktop.
Save hakamadare/9095770 to your computer and use it in GitHub Desktop.
busted installer.pp from openstack-foreman-installer-1.0.4
class { 'puppet':
runmode => 'cron',
server => true,
server_common_modules_path => [
'/usr/share/openstack-foreman-installer/puppet/modules',
'/usr/share/packstack/modules',
],
}
include passenger
class { 'foreman':
db_type => 'mysql',
custom_repo => true
}
#
# Check foreman_proxy/manifests/{init,params}.pp for other options
class { 'foreman_proxy':
custom_repo => true,
port => '9090',
registered_proxy_url => "https://${::fqdn}:9090",
tftp_servername => '',
dhcp => true,
dhcp_gateway => '10.255.77.254',
dhcp_range => '.50 .200',
dhcp_interface => 'br',
dns => true,
dns_reverse => '...in-addr.arpa',
dns_forwarders => ['128.103.1.1'],
dns_interface => 'br',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment