CARVIEW |
Every repository with this icon (

Every repository with this icon (

No gems have been built for this project yet.
Description: | A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure. edit |
Homepage: | https://wiki.opscode.com/display/chef edit |
Public Clone URL: |
git://github.com/opscode/chef.git
Give this clone URL to anyone.
git clone git://github.com/opscode/chef.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:opscode/chef.git
|
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Thu Jun 04 19:08:15 -0700 2009 | Adding metadata.json to the ignore list [Adam Jacob] |
![]() |
.gitmodules | Fri Apr 10 23:46:17 -0700 2009 | Submodule the web-app-theme [fujin] |
![]() |
CHANGELOG | Loading commit data... ![]() |
|
![]() |
LICENSE | Wed Oct 08 14:19:52 -0700 2008 | big refactor of the repo layout. move to a chef... [ezmobius] |
![]() |
NOTICE | Fri Mar 13 11:16:56 -0700 2009 | Adding joewilliams to the NOTICE file [adamhjk] |
![]() |
README.rdoc | Tue Jun 30 15:09:05 -0700 2009 | CHEF-418: Readme clarification for features [fujin] |
![]() |
Rakefile | ||
![]() |
chef-server-slice/ | ||
![]() |
chef-server/ | Mon Jun 29 17:01:31 -0700 2009 | CHEF-373: Remove specs from gems. Clean up t... [fujin] |
![]() |
chef/ | Tue Jul 07 21:17:10 -0700 2009 | CHEF-437: Update spec to recognise homedir in q... [thegrort] |
![]() |
cucumber.yml | Mon Jun 29 15:30:57 -0700 2009 | CHEF-416: Integration Features fixes (roles,sea... [fujin] |
![]() |
features/ |
Chef
DESCRIPTION:
Chef is a configuration management tool designed to bring automation to your entire infrastructure.
The Chef Wiki is the definitive source of user documentation.
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:
DEVELOPMENT:
Before working on the code, if you plan to contribute your changes, you need to read the Opscode Contributing document.
You will also need to set up the repository with the appropriate branches. We document the process on the Chef Wiki.
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.
ENVIRONMENT:
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.
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, github.com/opscode/ohai/tree/master.
roman-merb_cucumber is available from GitHub:
gem install --source https://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
The dev:features task:
- 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.
You’ll know its running when you see:
~ 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
You’ll want to leave this terminal running the dev environment.
Web Interface:
With the dev environment running, you can now access the web interface via localhost:4000/. Supply an OpenID to log in.
Spec testing:
We use RSpec for unit/spec tests.
rake spec
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.
Integration testing:
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:api:nodes # Run Features with Cucumber rake features:api:nodes:create # Run Features with Cucumber rake features:api:nodes:delete # Run Features with Cucumber rake features:api:nodes:list # Run Features with Cucumber rake features:api:nodes:show # Run Features with Cucumber rake features:api:nodes:update # Run Features with Cucumber rake features:api:roles # Run Features with Cucumber rake features:api:roles:create # Run Features with Cucumber rake features:api:roles:delete # Run Features with Cucumber rake features:api:roles:list # Run Features with Cucumber rake features:api:roles:show # Run Features with Cucumber rake features:api:roles:update # Run Features with Cucumber rake features:client # Run Features with Cucumber rake features:language # Run Features with Cucumber rake features:language:recipe_include # 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:
Tickets/Issues:
Documentation:
LICENSE:
Chef - A configuration management system
Author: | Adam Jacob (<adam@opscode.com>) |
Copyright: | Copyright © 2008, 2009 Opscode, Inc. |
License: | Apache License, Version 2.0 |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software 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.