Files
puppet-openstack_dev_env/manifests/setup/hosts.pp
Dan Bode cac3fe554d Add Redhat support
- 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
2012-11-05 22:46:53 -08:00

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',
}