Skip to content

Commit

Permalink
update chef* subdir README's to match.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Jun 25, 2009
1 parent 9788ab9 commit 4dd0215
Show file tree
Hide file tree
Showing 4 changed files with 313 additions and 173 deletions.
137 changes: 89 additions & 48 deletions chef-server-slice/README.rdoc
@@ -1,83 +1,125 @@
= chef
= Chef

* http://www.opscode.com/chef
= DESCRIPTION:

== DESCRIPTION:
Chef is a configuration management tool designed to bring automation to your entire infrastructure.

Chef is a systems management framework masquerading as a configuration management tool.
The Chef Wiki is the definitive source of user documentation.

I'm in ur netwerk, cookin up yer servers. :)
* http://wiki.opscode.com/display/chef/Home

== REQUIREMENTS:
This README focuses on developers who want to modify Chef source code. For users who just want to run the latest and greatest Chef development version in their environment, see:

chef:
* http://wiki.opscode.com/display/chef/Installing+Chef+from+HEAD

* ruby-openid
* json
* erubis
* extlib
* stomp
* ohai
= DEVELOPMENT:

chef-server and the chefserverslice (merb slice), same requires as chef above, plus:
Before working on the code, if you plan to contribute your changes, you need to read the Opscode Contributing document.

* stompserver
* ferret
* merb-core
* merb-haml
* mongrel
* haml
* ruby-openid
* syntax
* http://wiki.opscode.com/display/opscode/Contributing

Interim Note:
You will also need to set up the repository with the appropriate branches. We document the process on the Chef Wiki.

Once the {chef,chef-server,chefserverslice}.gem set is installed, do the following:
* http://wiki.opscode.com/display/opscode/Working+with+Git

> cd /Library/Ruby/Gems/1.8/gems/chef-server<xxx> # or wherever your gems land
> sudo rake slices:chefserverslice:install
Once your repository is set up, you can start working on the code. We do use BDD/TDD with RSpec and Cucumber, so you'll need to get a development environment running.

This installs the chefserverslice into the chef-server merb application
= ENVIRONMENT:

External Servers:
In order to have a development environment where changes to the Chef code can be tested, we'll need to install a few things after setting up the Git repository.

* stompserver (for easy stomp mq testing)
== Requirements:

Install these via your platform's preferred method; for example apt, yum, ports, emerge, etc.

* Git
* CouchDB
* libxml2 development package (for webrat)
* libxslt develoment package (for webrat)

Install the following RubyGems.

* ohai
* rake
* rspec
* cucumber
* webrat
* merb-core
* roman-merb_cucumber

Ohai is also by Opscode and available on GitHub, http://github.com/opscode/ohai/tree/master.

roman-merb_cucumber is available from GitHub:

gem install --source http://gems.github.com/ roman-merb_cucumber

== Starting the Environment:

Once everything is installed, run the dev:features rake task. Since the features do integration testing, root access is required.

sudo rake dev:features

== INSTALL:
The dev:features task:

Install all of the above. To fire up a develpment environment, do the following:
* Installs chef, chef-server, chef-server-slice gems. It will fail if required gems above are missing.
* Starts chef-server on ports 4000 and 4001.
* Starts chef-indexer.
* Starts CouchDB on port 5984.
* Starts the stompserver on port 61613.

* Start CouchDB with 'couchdb'
* Start stompserver with 'stompserver'
* Start chef-indexer with:
You'll know its running when you see:

chef-indexer -l debug
~ Activating slice 'ChefServerSlice' ...
merb : worker (port 4000) ~ Starting Mongrel at port 4000
merb : worker (port 4000) ~ Successfully bound to port 4000
merb : worker (port 4001) ~ Starting Mongrel at port 4001
merb : worker (port 4001) ~ Successfully bound to port 4001

* Start chef-server:
You'll want to leave this terminal running the dev environment.

chef-server -N -c 2
== Web Interface:

* Test run chef to begin node registration:
With the dev environment running, you can now access the web interface via http://localhost:4000/. Supply an OpenID to log in.

sudo ./bin/chef-client
== Spec testing:

* Validate the node registration:
We use RSpec for unit/spec tests.

Visit http://localhost:4000
Login, enter an openid URL (see http://openid.net/get/)
Registrations, click Validate
rake spec

* Test run chef with:
This doesn't actually use the development environment, because it does the testing on all the Chef internals. For integration/usage testing, we use Cucumber features.

chef-client
== Integration testing:

== LICENSE:
We test integration with Cucumber. The available feature tests are rake tasks:

rake features # Run Features with Cucumber
rake features:api # Run Features with Cucumber
rake features:client # Run Features with Cucumber
rake features:provider:package:macports # Run Features with Cucumber
rake features:provider:remote_file # Run Features with Cucumber
rake features:search # Run Features with Cucumber

= LINKS:

Source:

* http://github.com/opscode/chef/tree/master

Tickets/Issues:

* http://tickets.opscode.com/

Documentation:

* http://wiki.opscode.com/display/chef/Home/

= LICENSE:

Chef - A configuration management system

Author:: Adam Jacob (<adam@opscode.com>)
Copyright:: Copyright (c) 2008 Opscode, Inc.
Copyright:: Copyright (c) 2008, 2009 Opscode, Inc.
License:: Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -91,4 +133,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

137 changes: 89 additions & 48 deletions chef-server/README.rdoc
@@ -1,83 +1,125 @@
= chef
= Chef

* http://www.opscode.com/chef
= DESCRIPTION:

== DESCRIPTION:
Chef is a configuration management tool designed to bring automation to your entire infrastructure.

Chef is a systems management framework masquerading as a configuration management tool.
The Chef Wiki is the definitive source of user documentation.

I'm in ur netwerk, cookin up yer servers. :)
* http://wiki.opscode.com/display/chef/Home

== REQUIREMENTS:
This README focuses on developers who want to modify Chef source code. For users who just want to run the latest and greatest Chef development version in their environment, see:

chef:
* http://wiki.opscode.com/display/chef/Installing+Chef+from+HEAD

* ruby-openid
* json
* erubis
* extlib
* stomp
* ohai
= DEVELOPMENT:

chef-server and the chefserverslice (merb slice), same requires as chef above, plus:
Before working on the code, if you plan to contribute your changes, you need to read the Opscode Contributing document.

* stompserver
* ferret
* merb-core
* merb-haml
* mongrel
* haml
* ruby-openid
* syntax
* http://wiki.opscode.com/display/opscode/Contributing

Interim Note:
You will also need to set up the repository with the appropriate branches. We document the process on the Chef Wiki.

Once the {chef,chef-server,chefserverslice}.gem set is installed, do the following:
* http://wiki.opscode.com/display/opscode/Working+with+Git

> cd /Library/Ruby/Gems/1.8/gems/chef-server<xxx> # or wherever your gems land
> sudo rake slices:chefserverslice:install
Once your repository is set up, you can start working on the code. We do use BDD/TDD with RSpec and Cucumber, so you'll need to get a development environment running.

This installs the chefserverslice into the chef-server merb application
= ENVIRONMENT:

External Servers:
In order to have a development environment where changes to the Chef code can be tested, we'll need to install a few things after setting up the Git repository.

* stompserver (for easy stomp mq testing)
== Requirements:

Install these via your platform's preferred method; for example apt, yum, ports, emerge, etc.

* Git
* CouchDB
* libxml2 development package (for webrat)
* libxslt develoment package (for webrat)

Install the following RubyGems.

* ohai
* rake
* rspec
* cucumber
* webrat
* merb-core
* roman-merb_cucumber

Ohai is also by Opscode and available on GitHub, http://github.com/opscode/ohai/tree/master.

roman-merb_cucumber is available from GitHub:

gem install --source http://gems.github.com/ roman-merb_cucumber

== Starting the Environment:

Once everything is installed, run the dev:features rake task. Since the features do integration testing, root access is required.

sudo rake dev:features

== INSTALL:
The dev:features task:

Install all of the above. To fire up a develpment environment, do the following:
* Installs chef, chef-server, chef-server-slice gems. It will fail if required gems above are missing.
* Starts chef-server on ports 4000 and 4001.
* Starts chef-indexer.
* Starts CouchDB on port 5984.
* Starts the stompserver on port 61613.

* Start CouchDB with 'couchdb'
* Start stompserver with 'stompserver'
* Start chef-indexer with:
You'll know its running when you see:

chef-indexer -l debug
~ Activating slice 'ChefServerSlice' ...
merb : worker (port 4000) ~ Starting Mongrel at port 4000
merb : worker (port 4000) ~ Successfully bound to port 4000
merb : worker (port 4001) ~ Starting Mongrel at port 4001
merb : worker (port 4001) ~ Successfully bound to port 4001

* Start chef-server:
You'll want to leave this terminal running the dev environment.

chef-server -N -c 2
== Web Interface:

* Test run chef to begin node registration:
With the dev environment running, you can now access the web interface via http://localhost:4000/. Supply an OpenID to log in.

sudo ./bin/chef-client
== Spec testing:

* Validate the node registration:
We use RSpec for unit/spec tests.

Visit http://localhost:4000
Login, enter an openid URL (see http://openid.net/get/)
Registrations, click Validate
rake spec

* Test run chef with:
This doesn't actually use the development environment, because it does the testing on all the Chef internals. For integration/usage testing, we use Cucumber features.

chef-client
== Integration testing:

== LICENSE:
We test integration with Cucumber. The available feature tests are rake tasks:

rake features # Run Features with Cucumber
rake features:api # Run Features with Cucumber
rake features:client # Run Features with Cucumber
rake features:provider:package:macports # Run Features with Cucumber
rake features:provider:remote_file # Run Features with Cucumber
rake features:search # Run Features with Cucumber

= LINKS:

Source:

* http://github.com/opscode/chef/tree/master

Tickets/Issues:

* http://tickets.opscode.com/

Documentation:

* http://wiki.opscode.com/display/chef/Home/

= LICENSE:

Chef - A configuration management system

Author:: Adam Jacob (<adam@opscode.com>)
Copyright:: Copyright (c) 2008 Opscode, Inc.
Copyright:: Copyright (c) 2008, 2009 Opscode, Inc.
License:: Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -91,4 +133,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

0 comments on commit 4dd0215

Please sign in to comment.