Puppet Class: openstack::setup::cirros
- Defined in:
- manifests/setup/cirros.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/setup/cirros.pp', line 1
class openstack::setup::cirros {
glance_image { 'Cirros':
ensure => present,
name => 'Cirros',
is_public => 'yes',
container_format => 'bare',
disk_format => 'qcow2',
source => 'http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img',
}
}
|