knife-cloudstack-fog 0.3.0 → 0.3.1
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/README.rdoc +10 -3
- data/lib/chef/knife/cloudstack_server_create.rb +1 -1
- data/lib/knife-cloudstack-fog/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
= DESCRIPTION:
|
4
4
|
|
5
|
-
This is the unofficial Opscode Knife plugin for
|
5
|
+
This is the unofficial Opscode Knife plugin for Apache CloudStack / Citrix CloudPlatform Clouds. This plugin gives knife the ability to create, bootstrap, and manage instances in Cloudstack Compute clouds.
|
6
6
|
|
7
7
|
= INSTALLATION:
|
8
8
|
|
@@ -20,6 +20,8 @@ This plugin is distributed as a Ruby Gem. To install it, run:
|
|
20
20
|
|
21
21
|
Depending on your system's configuration, you may need to run this command with root privileges.
|
22
22
|
|
23
|
+
Also, all of these commands have been tested against CloudStack/CloudPlatform 2.2.14 and 3.0.6.
|
24
|
+
|
23
25
|
= CONFIGURATION:
|
24
26
|
|
25
27
|
In order to communicate with an Cloudstack Compute cloud's CLOUDSTACK API you will have to tell Knife about your Cloudstack Compute cloud API endpoint, Cloudstack Access Key and Secret Access Key. The easiest way to accomplish this is to create some entries in your <tt>knife.rb</tt> file:
|
@@ -53,7 +55,7 @@ This plugin provides the following Knife subcommands. Specific command options
|
|
53
55
|
|
54
56
|
== knife cloudstack server create
|
55
57
|
|
56
|
-
Provisions a new server in an Cloudstack Compute cloud and then perform a Chef bootstrap (using the SSH protocol). The goal of the bootstrap is to get Chef installed on the target system so it can run Chef Client with a Chef Server. The main assumption is a baseline OS installation exists (provided by the provisioning). It is primarily intended for Chef Client systems that talk to a Chef server. By default the server is bootstrapped using the
|
58
|
+
Provisions a new server in an Cloudstack Compute cloud and then perform a Chef bootstrap (using the SSH protocol). The goal of the bootstrap is to get Chef installed on the target system so it can run Chef Client with a Chef Server. The main assumption is a baseline OS installation exists (provided by the provisioning). It is primarily intended for Chef Client systems that talk to a Chef server. By default the server is bootstrapped using the chef-full template. This can be overridden using the <tt>-d</tt> or <tt>--template-file</tt> command options.
|
57
59
|
|
58
60
|
== knife cloudstack server delete
|
59
61
|
|
@@ -83,7 +85,7 @@ Delete a keypair which is abailable to the currently configured Cloudstack Compu
|
|
83
85
|
|
84
86
|
Outputs a list of all available keypairs available to the currently configured Cloudstack Compute cloud account. This information is valuable to provide password recovery options as well as associating a Cloudstack keypair with an instance for any advanced authentication methods when instantiating a server with the <tt>knife cloudstack server create</tt> subcommand.
|
85
87
|
|
86
|
-
== knife cloudstack
|
88
|
+
== knife cloudstack network list
|
87
89
|
|
88
90
|
Outputs a list of all available network offerings available to the currently configured Cloudstack Compute cloud account. This information is necessary to locate a network ID when instantiating a server with the <tt>knife cloudstack server create</tt> subcommand if your Cloudstack Compute cloud requires a server be associated with a particular network offering.
|
89
91
|
|
@@ -111,6 +113,11 @@ Outputs a list of all available zones available to the currently configured Clou
|
|
111
113
|
|
112
114
|
Outputs a list of all available disk offerings available to the currently configured Cloudstack Compute cloud account. This information is valuable if you are also seeking to provision a data disk alongside your root volume when instantiating a server with the <tt>knife cloudstack server create</tt> subcommand.
|
113
115
|
|
116
|
+
== knife cloudstack network create
|
117
|
+
|
118
|
+
Creates networks to be used by the knife cloudstack server create command in zones that are configured in Advanced/VPC networking modes.
|
119
|
+
|
120
|
+
|
114
121
|
|
115
122
|
= LICENSE:
|
116
123
|
|
@@ -71,7 +71,7 @@ class Chef
|
|
71
71
|
:long => "--distro DISTRO",
|
72
72
|
:description => "Bootstrap a distro using a template; default is 'ubuntu10.04-gems'",
|
73
73
|
:proc => Proc.new { |d| Chef::Config[:knife][:distro] = d },
|
74
|
-
:default => "
|
74
|
+
:default => "chef-full"
|
75
75
|
|
76
76
|
option :template_file,
|
77
77
|
:long => "--template-file TEMPLATE",
|