lib/fog/google/models/compute/servers.rb in fog-1.21.0 vs lib/fog/google/models/compute/servers.rb in fog-1.22.0
- old
+ new
@@ -44,20 +44,20 @@
nil
end
def bootstrap(new_attributes = {})
name = "fog-#{Time.now.to_i}"
- zone = "us-central1-b"
+ zone = "us-central1-a"
disks = new_attributes[:disks]
if disks.nil? or disks.empty?
# create the persistent boot disk
disk_defaults = {
:name => name,
:size_gb => 10,
:zone_name => zone,
- :source_image => "debian-7-wheezy-v20131120",
+ :source_image => "debian-7-wheezy-v20140408",
}
# backwards compatibility to pre-v1
new_attributes[:source_image] = new_attributes[:image_name] if new_attributes[:image_name]