fog-brightbox 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/fog/brightbox/models/compute/server.rb +2 -0
- data/lib/fog/brightbox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cd8735538d2a88667029cca89e20489a6be746a
|
|
4
|
+
data.tar.gz: 8ec08a6ce320858bd2b27c4abb46844772d904ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9c0c2eb4061346340cfe8334d330d9700bc2028ad5fd33071675f8e5fe03634d0fb873b77eb444d7a069f4ea6a7af5ed80a0be9de1705794fa065e188e864ef
|
|
7
|
+
data.tar.gz: e03daebe3995bbb19500e3aa194b8e8f5161889420a3580902f0d190bfe6bb214e7d8dc4a8e049e11a9f3304b1db0bdb25231e85fc6f4d4e735bc72f1c0a1720
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 0.13.0 / 2017-08-01
|
|
2
|
+
|
|
3
|
+
Enhancements:
|
|
4
|
+
|
|
5
|
+
* Added `cloud_ip` argument to server creation to request an immediate mapping
|
|
6
|
+
when a server build has completed. Either to a known cloud IP using its
|
|
7
|
+
identifier or by using `true` to allocate a new IP for the operation.
|
|
8
|
+
|
|
1
9
|
### 0.12.0 / 2017-07-19
|
|
2
10
|
|
|
3
11
|
Enhancements:
|
|
@@ -32,6 +32,7 @@ module Fog
|
|
|
32
32
|
attribute :image_id, :aliases => "image", :squash => "id"
|
|
33
33
|
|
|
34
34
|
attribute :snapshots
|
|
35
|
+
attribute :cloud_ip # Creation option only
|
|
35
36
|
attribute :cloud_ips
|
|
36
37
|
attribute :interfaces
|
|
37
38
|
attribute :server_groups
|
|
@@ -186,6 +187,7 @@ module Fog
|
|
|
186
187
|
}.delete_if { |_k, v| v.nil? || v == "" }
|
|
187
188
|
|
|
188
189
|
options.merge!(:server_type => flavor_id) unless flavor_id.nil? || flavor_id == ""
|
|
190
|
+
options.merge!(:cloud_ip => cloud_ip) unless cloud_ip.nil? || cloud_ip == ""
|
|
189
191
|
|
|
190
192
|
data = service.create_server(options)
|
|
191
193
|
merge_attributes(data)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-brightbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Thornthwaite
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog-core
|