README.md in clc-fork-chef-metal-0.11.2.alpha.3 vs README.md in clc-fork-chef-metal-0.12.1.alpha.1
- old
+ new
@@ -1,5 +1,6 @@
+[![Stories in Ready](https://badge.waffle.io/opscode/chef-metal.png?label=ready&title=Ready)](https://waffle.io/opscode/chef-metal)
Chef Metal
==========
This library solves the problem of repeatably creating machines and infrastructures in Chef. It has a plugin model that lets you write bootstrappers for your favorite infrastructures, including VirtualBox, EC2, LXC, bare metal, and many more!
@@ -8,11 +9,11 @@
Date | Blog
-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------
6/3/2014 | [machine_batch and parallelization](https://github.com/opscode/chef-metal/blob/master/docs/blogs/2012-05-28-machine_batch.html.markdown#chef-metal-parallelization)
6/3/2014 | [Chef Metal, Configuration and Drivers](https://github.com/opscode/chef-metal/blob/master/docs/blogs/2012-05-22-new-driver-interface.html.markdown#chef-metal-configuration-and-drivers)
3/4/2014 | [Chef Metal 0.2: Overview](http://www.getchef.com/blog/2014/03/04/chef-metal-0-2-release/) - this is a pretty good overview (though dated).
-12/20/2014 | [Chef Metal Alpha](http://www.getchef.com/blog/2013/12/20/chef-metal-alpha/)
+12/20/2013 | [Chef Metal Alpha](http://www.getchef.com/blog/2013/12/20/chef-metal-alpha/)
Try It Out
----------
You can try out Metal in many different flavors.
@@ -22,11 +23,11 @@
### Vagrant
To give it a spin, install Vagrant and VirtualBox and try this from the `chef-metal/docs/examples` directory:
```
-gem install chef-metal
+gem install chef-metal chef-metal-vagrant
export CHEF_DRIVER=vagrant
chef-client -z vagrant_linux.rb simple.rb
```
This will create two vagrant precise64 linux boxes, "mario" and "luigi1", in `~/machinetest`, bootstrapped to an empty runlist. For Windows, you can replace `myapp::linux` with `myapp::windows`, but you'll need your own Windows vagrant box to do that (licensing!).
@@ -34,11 +35,11 @@
### AWS
If you have an AWS account, you can spin up a machine there like this:
```
-gem install chef-metal
+gem install chef-metal chef-metal-fog
export CHEF_DRIVER=fog:AWS
chef-client -z simple.rb
```
This will create two linux boxes in the AWS account referenced by your default profile in `~/.aws/config` (or your environment variables).
@@ -46,11 +47,11 @@
### DigitalOcean
If you are on DigitalOcean and using the `tugboat` gem, you can do this:
```
-gem install chef-metal
+gem install chef-metal chef-metal-fog
export CHEF_DRIVER=fog:DigitalOcean
chef-client -z simple.rb
```
If you aren't using the `tugboat` gem, you can put `driver` and `driver_options` into your `.chef/knife.rb` file.
@@ -66,11 +67,11 @@
```
What Is Chef Metal?
-------------------
-Chef Metal has two major abstractions: the machine resource, anf drivers.
+Chef Metal has two major abstractions: the machine resource, and drivers.
### The `machine` resource
You declare what your machines do (recipes, tags, etc.) with the `machine` resource, the fundamental unit of Chef Metal. You will typically declare `machine` resources in a separate, OS/provisioning-independent file that declares the *topology* of your app--your machines and the recipes that will run on them.
@@ -232,6 +233,5 @@
-----------------
Please submit bugs, gripes and feature requests at [https://github.com/opscode/chef-metal/issues](https://twitter.com/jkeiser2), contact jkeiser on Twitter at @jkeiser2, email at [jkeiser@getchef.com](mailto:jkeiser@getchef.com)
To contribute, just make a PR in the appropriate repo--also, make sure you've [signed the Chef Contributor License Agreement](https://secure.echosign.com/public/hostedForm?formid=PJIF5694K6L) (quick couple of minutes online), since this is going into core Chef eventually. It takes some time to process, so if you've just done it, let me know in the PR :) If you already signed this for a Chef contribution, you don't need to do so again--if you're not sure, you can check for your name [here](https://wiki.opscode.com/display/chef/Approved+Contributors)!
-Â