knife-cloudstack-fog 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  = DESCRIPTION:
4
4
 
5
- This is the unofficial Opscode Knife plugin for Cloudstack Cloud. This plugin gives knife the ability to create, bootstrap, and manage instances in Cloudstack Compute clouds.
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 {ubuntu10.04-gems}[https://github.com/opscode/chef/blob/master/chef/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb] template. This can be overridden using the <tt>-d</tt> or <tt>--template-file</tt> command options.
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 networks list
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 => "ubuntu10.04-gems"
74
+ :default => "chef-full"
75
75
 
76
76
  option :template_file,
77
77
  :long => "--template-file TEMPLATE",
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Cloudstack
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-cloudstack-fog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: