- move hosts.pp to setup/precise64.pp - create a setup manifest for redhat - do not use apache module for red hat - allow config of vagrant based on ENV VAR
20 lines
563 B
Puppet
20 lines
563 B
Puppet
#
|
|
# specify a connection to the hardcoded puppet master
|
|
#
|
|
host {
|
|
'puppet': ip => '172.16.0.2';
|
|
'openstackcontroller': ip => '172.16.0.3';
|
|
'compute1': ip => '172.16.0.4';
|
|
'compute2': ip => '172.16.0.14';
|
|
'novacontroller': ip => '172.16.0.5';
|
|
'glance': ip => '172.16.0.6';
|
|
'keystone': ip => '172.16.0.7';
|
|
'mysql': ip => '172.16.0.8';
|
|
'cinderclient': ip => '172.16.0.9';
|
|
'quantumagent': ip => '172.16.0.10';
|
|
}
|
|
|
|
group { 'puppet':
|
|
ensure => 'present',
|
|
}
|