knife-vcloud 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +10 -0
- data/README.md +35 -6
- data/lib/chef/knife/vc_vm_config_guest.rb +1 -1
- metadata +4 -4
data/CHANGELOG.md
CHANGED
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
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
--
|
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.
|
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-
|
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.
|
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.
|
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
|