knife-softlayer 0.3.3 → 0.3.5
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 +8 -8
- data/CONTRIBUTORS.md +3 -0
- data/knife-softlayer.gemspec +2 -1
- data/lib/chef/knife/softlayer_server_create.rb +2 -1
- data/lib/knife-softlayer/version.rb +1 -1
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NmFiNGJiYmRmN2E0OWRkM2FkNjA5NGRkMDViYWM3ZWM5ZmVkNWYxMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWMwMWNlNWE4YzBhMTcwOGJlZWQ0Y2I3OTFkMzQ5MTk1MmMyZjEyYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YmU1NTMyMWNiYjU1Zjk0NzZiYTM3NzlkMTZmZTUxNTk0ZjYxODA2MzJmZTUw
|
10
|
+
ZDA1YjkxMjExNzY5NDRjMjA4MTkyN2NhZWE0YWMxOGEwNTczMjJhNTliOWVm
|
11
|
+
NjA5NTg5NTA2NmJjNzhmZjliYTBjMDA0MDE3NjQ3MzNmZjE3Nzg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjBmNDVhYTkyN2VlYzQ5ZGUwMzEyMDUyZDYzNjhhZDViNDc1Yjc0YjFmMzEy
|
14
|
+
NTRhMDgwZmE1NGE4MTEzNDhmOTQwNDZkNGE3ZjI1MjZjY2Y0OTYzZjEzZDZi
|
15
|
+
N2NhZTUyMGYzNmE4M2Y1ZjlmMjgyNTBlZWVkYTg1YWM3NzZlZjE=
|
data/CONTRIBUTORS.md
ADDED
data/knife-softlayer.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.test_files = spec.files.grep(%r{^(spec|spec|features)/})
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
|
-
spec.add_dependency "fog-softlayer", "~> 0.3", ">= 0.3.
|
28
|
+
spec.add_dependency "fog-softlayer", "~> 0.3", ">= 0.3.20"
|
29
29
|
spec.add_dependency "knife-windows", "> 0.5.12"
|
30
30
|
spec.add_dependency "net-ssh", "> 2.8.0"
|
31
31
|
|
@@ -35,4 +35,5 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.add_development_dependency "rake", "~>10.1"
|
36
36
|
spec.add_development_dependency "sdoc", "~>0.3"
|
37
37
|
spec.add_development_dependency "bundler", "~>1.5"
|
38
|
+
spec.add_development_dependency "osrcry"
|
38
39
|
end
|
@@ -53,7 +53,8 @@ class Chef
|
|
53
53
|
option :block_storage,
|
54
54
|
:long => '--block-storage VALUE',
|
55
55
|
:short => '-B VALUE',
|
56
|
-
:description => 'The size in GB of the block storage devices (disks) for this instance. Specify 1 - 5 entries in a comma separated list following the format "dev:size". Example: "0:25,2:500" would be a 25GB volume on device 0 (the root partition) and a 100GB volume on on device 2. [NOTE: SoftLayer VMs always reserve device 1 for a swap device.] '
|
56
|
+
:description => 'The size in GB of the block storage devices (disks) for this instance. Specify 1 - 5 entries in a comma separated list following the format "dev:size". Example: "0:25,2:500" would be a 25GB volume on device 0 (the root partition) and a 100GB volume on on device 2. [NOTE: SoftLayer VMs always reserve device 1 for a swap device.] ',
|
57
|
+
:proc => Proc.new { |devs| devs.split(',').map{ |dev| device, capacity = dev.split(':'); {"device"=>device, "diskImage"=>{"capacity"=>capacity}} } }
|
57
58
|
|
58
59
|
option :nic,
|
59
60
|
:long => '--network-interface-speed VALUE',
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-softlayer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Eldridge
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-softlayer
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '0.3'
|
20
20
|
- - ! '>='
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.3.
|
22
|
+
version: 0.3.20
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '0.3'
|
30
30
|
- - ! '>='
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 0.3.
|
32
|
+
version: 0.3.20
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: knife-windows
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,6 +142,20 @@ dependencies:
|
|
142
142
|
- - ~>
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '1.5'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: osrcry
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ! '>='
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
type: :development
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ! '>='
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
145
159
|
description: A knife plugin for launching and bootstrapping instances in the IBM SoftLayer
|
146
160
|
cloud.
|
147
161
|
email:
|
@@ -154,6 +168,7 @@ files:
|
|
154
168
|
- .travis.yml
|
155
169
|
- CHANGELOG.md
|
156
170
|
- CONTRIBUTING.md
|
171
|
+
- CONTRIBUTORS.md
|
157
172
|
- Gemfile
|
158
173
|
- LICENSE.txt
|
159
174
|
- README.md
|