Skip to content

Commit f93374e

Browse files
committed
Update Cirros to 0.3.2
Update Cirros image install to use newest version (0.3.2). Change-Id: Ifedeec1c6660bde11c0833e2e50d3b316170fe76 Closes-Bug: #1301901
1 parent 6509520 commit f93374e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

manifests/provision.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
## Glance
5151
$image_name = 'cirros',
52-
$image_source = 'http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img',
52+
$image_source = 'http://download.cirros-cloud.net/0.3.2/cirros-0.3.2-x86_64-disk.img',
5353
$image_ssh_user = 'cirros',
5454

5555
## Neutron

spec/classes/openstack_provision_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
let :params do
1313
{
1414
:image_name => 'cirros',
15-
:image_source => 'http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img',
15+
:image_source => 'http://download.cirros-cloud.net/0.3.2/cirros-0.3.2-x86_64-disk.img',
1616
:image_name_alt => 'cirros2',
1717
}
1818
end
@@ -40,7 +40,7 @@
4040
let :params do
4141
{
4242
:image_name => 'cirros',
43-
:image_source => 'http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img',
43+
:image_source => 'http://download.cirros-cloud.net/0.3.2/cirros-0.3.2-x86_64-disk.img',
4444
}
4545
end
4646

templates/test_nova.sh.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ source <%= @rc_file_path %>
66
<% if @image_type == 'cirros' -%>
77

88
# Grab an image. Cirros is a nice small Linux that's easy to deploy
9-
wget --quiet http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img
9+
wget --quiet http://download.cirros-cloud.net/0.3.2/cirros-0.3.2-x86_64-disk.img
1010

1111
# Add it to glance so that we can use it in Openstack
12-
glance add name='cirros image' is_public=true container_format=bare disk_format=qcow2 < cirros-0.3.1-x86_64-disk.img
12+
glance add name='cirros image' is_public=true container_format=bare disk_format=qcow2 < cirros-0.3.2-x86_64-disk.img
1313

1414
# Caputre the Image ID so taht we can call the right UUID for this image
1515
IMAGE_ID=`glance index | grep 'cirros image' | head -1 | awk -F' ' '{print $1}'`

0 commit comments

Comments
 (0)