Merge "Fix Puppet syntax in glance_image example"

This commit is contained in:
Zuul 2017-11-14 00:54:13 +00:00 committed by Gerrit Code Review
commit f00dcac0e8
1 changed files with 4 additions and 4 deletions

View File

@ -6,14 +6,14 @@ Puppet::Type.newtype(:glance_image) do
glance_image { "Ubuntu 12.04 cloudimg amd64":
ensure => present,
name => "Ubuntu 12.04 cloudimg amd64"
name => "Ubuntu 12.04 cloudimg amd64",
is_public => yes,
container_format => ovf,
container_format => 'ovf',
disk_format => 'qcow2',
source => 'http://uec-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-amd64-disk1.img'
source => 'http://uec-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-amd64-disk1.img',
min_ram => 1234,
min_disk => 1234,
properties => { 'img_key' => img_value }
properties => { 'img_key' => img_value },
}
Known problems / limitations: