knife-vcloud 0.2.2 → 0.2.3

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.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  Changes
2
2
  ==
3
+ 2012-12-28 (0.2.3)
4
+ --
5
+
6
+ VARIOUS:
7
+ * Update dependency vcloud-rest v. 0.2.1
8
+ * Update documentation
9
+
10
+ FIXES:
11
+ * Minor fixes
12
+
3
13
  2012-12-27 (0.2.2)
4
14
  --
5
15
 
data/README.md CHANGED
@@ -35,7 +35,7 @@ PREREQUISITES
35
35
  --
36
36
  - chef >= 0.10.0
37
37
  - knife-windows
38
- - vcloud-rest"
38
+ - vcloud-rest
39
39
 
40
40
  USAGE
41
41
  --
@@ -166,7 +166,7 @@ This command halts a given vApp.
166
166
 
167
167
  _Example:_
168
168
 
169
- $ knife vc vapp $ knife vc vapp stop 09551b42-dca9-474d-aa50-201b223522db
169
+ $ knife vc vapp stop 09551b42-dca9-474d-aa50-201b223522db
170
170
  vApp shutdown...Done!
171
171
  Summary: Status: success - started at 2012-12-19T16:56:31.100+01:00 and ended at 2012-12-19T16:56:38.667+01:00
172
172
 
@@ -204,27 +204,56 @@ _Example:_
204
204
 
205
205
  ###vApp's network configuration
206
206
  This command allows for basic vApp network configuration.
207
+ E.g., retain IP address across deployments (defaults to POOL), set fence mode to _Isolated_ or _Bridge_
208
+
209
+ Please note that you must use the human readable name of the network (i.e., _TestNet\_1_).
207
210
 
208
211
  _Example:_
209
- *TBD*
212
+
213
+ $ knife vc vapp config network 31a56cf6-088b-4a43-b726-d6370b4e7d0a TestNet_1
210
214
 
211
215
  ###Show VM's details
212
216
  This command shows details about a given VM.
213
217
 
214
218
  _Example:_
215
- *TBD*
219
+
220
+ $ knife vc vm show 31a56cf6-088b-4a43-b726-d6370b4e7d0a
221
+ OS Name: Red Hat Enterprise Linux 6 (64-bit)
222
+ Network TestNet_1
223
+ Index 0
224
+ Ip 10.102.47.70
225
+ Is connected true
226
+ Mac address 00:50:56:01:01:80
227
+ Ip allocation mode POOL
228
+
229
+ Guest Customizations
230
+ Enabled true
231
+ Admin passwd enabled true
232
+ Admin passwd auto true
233
+ Admin passwd xxxxxxxxxx
234
+ Reset passwd required false
235
+ Computer name RHEL63-Plus
216
236
 
217
237
  ###VM's network configuration
218
238
  This command allows for basic VM network configuration.
239
+ E.g., set IP allocation mode (defaults to POOL)
240
+
241
+ Please note that you must use the human readable name of the network (i.e., _TestNet\_1_).
219
242
 
220
243
  _Example:_
221
- *TBD*
244
+
245
+ $ knife vc vm config network 31a56cf6-088b-4a43-b726-d6370b4e7d0a TestNet_1
246
+ VM network configuration...Done!
247
+ Summary: Status: success - started at 2012-12-28T11:42:32.910+01:00 and ended at 2012-12-28T11:42:37.313+01:00
222
248
 
223
249
  ###VM's Guest Customization configuration
224
250
  This command allows for basic VM Guest Customization configuration.
225
251
 
226
252
  _Example:_
227
- *TBD*
253
+
254
+ $ knife vc vm config guest c5f11906-561b-4ffd-850a-60a48c6a21e9 CENTOS63 --guest --admin-passwd "testpassword"
255
+ VM guest configuration...Done!
256
+ Summary: Status: success - started at 2012-12-28T11:42:32.910+01:00 and ended at 2012-12-28T11:42:37.313+01:00
228
257
 
229
258
  LICENSE
230
259
  --
@@ -57,7 +57,7 @@ class Chef
57
57
 
58
58
  task_id, response = connection.set_vm_guest_customization vm_id, computer_name, config
59
59
 
60
- print "VM network configuration..."
60
+ print "VM guest configuration..."
61
61
  wait_task(connection, task_id)
62
62
 
63
63
  connection.logout
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-vcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-27 00:00:00.000000000 Z
12
+ date: 2012-12-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ~>
52
52
  - !ruby/object:Gem::Version
53
- version: 0.2.0
53
+ version: 0.2.1
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
@@ -58,7 +58,7 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 0.2.0
61
+ version: 0.2.1
62
62
  description: A Knife plugin to create, list and manage vCloud servers
63
63
  email:
64
64
  - stefano.tortarolo@gmail.com