
Adds class openstack::repo::diablo which sets up the ppa to install openstack diablo. Also added to the host setup manifest.
25 lines
380 B
Puppet
25 lines
380 B
Puppet
Host { ensure => present }
|
|
host { 'puppetmaster':
|
|
ip => '172.21.0.10',
|
|
}
|
|
host { 'all':
|
|
ip => '172.21.0.11',
|
|
}
|
|
host { 'db':
|
|
ip => '172.21.0.12'
|
|
}
|
|
host { 'rabbitmq':
|
|
ip => '172.21.0.13',
|
|
}
|
|
host { 'controller':
|
|
ip => '172.21.0.14',
|
|
}
|
|
host { 'compute':
|
|
ip => '172.21.0.15',
|
|
}
|
|
host { 'glance':
|
|
ip => '172.21.0.16',
|
|
}
|
|
class { 'apt': }
|
|
class { 'openstack::repo::diablo': }
|