Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

application (38) Versions 0.3.0

A Chef cookbook for deploying application code.

Policyfile
Berkshelf
Knife
cookbook 'application', '= 0.3.0', :supermarket
cookbook 'application', '= 0.3.0'
knife supermarket install application
knife supermarket download application
README
Dependencies
Quality -%
Application cookbook ==================== This cookbook is initially designed to be able to describe and deploy web applications. Currently supported: * Rails Other application stacks (PHP, DJango, JBoss, etc) will be supported as new recipes at a later date. This cookbook aims to provide primitives to install/deploy any kind of application driven entirely by data defined in an abstract way through a data bag. --- Recipes ======= The application cookbook contains the following recipes. default ------- Searches the `apps` data bag and checks that a server role in the app exists on this node, adds the app to the run state and uses the role for the app to locate the recipes that need to be used. The recipes listed in the "type" part of the data bag are included by this recipe, so only the "application" recipe needs to be in the node or role `run_list`. See below regarding the application data bag structure. rails ----- Using the node's `run_state` that contains the current application in the search, this recipe will install required packages and gems, set up the deployment scaffolding, creates database and memcached configurations if required and then performs a revision-based deploy. This recipe can be used on nodes that are going to run the application, or on nodes that need to have the application code checkout available such as supporting utility nodes or a configured load balancer that needs static assets stored in the application repository. unicorn ------- Requires `unicorn` cookbook. Unicorn is installed, default attributes are set for the node and an app specific unicorn config and runit service are created. --- Deprecated Recipes ================== The following recipes are deprecated in favor of rails+unicorn, as that is performant enough for many Rails applications, and takes less time to provision new instances. Using these recipes may require additional work to the rest of the stack that wouldn't be required with rails+unicorn because they were early-phase development of this cookbook. passenger-nginx --------------- Builds passenger as an nginx module, drops off the configuration file and sets up the site to run the application under nginx with passenger. Does not deploy the code automatically. rails_nginx_ree_passenger ------------------------- Sets up the application stack with Ruby Enterprise Edition, Nginx and Passenger. The recipe searches the apps data bag and then installs packages and gems, creates the nginx vhost config and enables the site, sets up the deployment scaffolding, and uses a revision-based deploy for the code. Database and memcached yaml files are written out as well, if required. --- Application Data Bag ==================== The applications data bag expects certain values in order to configure parts of the recipe. Below is a paste of the JSON, where the value is a description of the key. Use your own values, as required. Note that this data bag is also used by the `database` cookbook, so it will contain database information as well. Items that may be ambiguous have an example. The application used in examples is named `my_app` and the environment is `production`. Most top-level keys are Arrays, and each top-level key has an entry that describes what it is for, followed by the example entries. Entries that are hashes themselves will have the description in the value. Note about "type": the recipes listed in the "type" will be included in the run list via `include_recipe` in the application default recipe. Note about `databases`, the data specified will be rendered as the `database.yml` file. Note about gems and packages, the version is optional. If specified, the version will be passed as a parameter to the resource. Otherwise it will use the latest available version per the default `:install` action for the package provider. { "id": "my_app", "server_roles": [ "application specific role(s), typically the name of the app, e.g., my_app", "my_app" ], "type": { "my_app": [ "recipes in this application cookbook to run for this role", "rails", "unicorn" ] }, "memcached_role": [ "name of the role used for the app-specific memcached server", "my_app_memcached" ], "database_slave_role": [ "name of the role used by database slaves, typically named after the app, 'my_app_database_slave'", "my_app_database_slave" ], "database_master_role": [ "name of the role used by database master, typically named after the app 'my_app_database_master'", "my_app_database_master" ], "repository": "git@github.com:company/my_app.git", "revision": { "production": "commit hash, branch or tag to deploy" }, "force": { "production": "true or false w/o quotes to force deployment, see the rails.rb recipe" }, "migrate": { "production": "true or false boolean to force migration, see rails.rb recipe" }, "databases": { "db_name_production": { "reconnect": "true", "encoding": "utf8", "username": "db_user", "adapter": "mysql", "password": "awesome_password", "database": "db_name_production" } }, "mysql_root_password": { "production": "password for the root user in mysql" }, "mysql_debian_password": { "production": "password for the debian-sys-maint user on ubuntu/debian" }, "mysql_repl_password": { "production": "password for the 'repl' user for replication." }, "snapshots_to_keep": { "production": "if using EBS, integer of the number of snapshots we're going to keep for this environment." }, "deploy_key": "SSH private key used to deploy from a private git repository", "deploy_to": "path to deploy, e.g. /srv/my_app", "owner": "owner for the application files when deployed", "group": "group for the application files when deployed", "packages": { "package_name": "specific packages required for installation at the OS level to run the app like libraries and specific version, e.g.", "curl": "7.19.5-1ubuntu2" }, "gems": { "gem_name": "specific gems required for installation to run the application, and if a specific version is required, e.g.", "rails": "2.3.5" }, "memcached": { "production": { "namespace": "specify the memcache namespace, ie my_app_environment" } } } --- Usage ===== To use the application cookbook, we recommend creating a role named after the application, e.g. `my_app`. In your chef-repo, create `roles/my_app.rb`. Also recommended is a site-cookbook named after the application, e.g. `my_app`, for additional application specific setup. name "my_app" description "My application front end server." run_list( "recipe[application]" ) The idea with this recipe is that the additional recipes you need for the application are handled by specifying them in the application data bag's "type". If you need other recipes, such as `mysql::client` add those as well. Then upload the role to the Chef Server. % knife role from file roles/my_app.rb Add the role to a node. Create the data bag per the guidelines above, and run Chef to watch it deploy the application! --- License and Author ================== Author:: Adam Jacob (<adam@opscode.com>) Author:: Joshua Timberman (<joshua@opscode.com>) Copyright 2009-2010, Opscode, Inc. 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 http://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.

Dependent cookbooks

unicorn >= 0.0.0
runit >= 0.0.0
passenger_enterprise >= 0.0.0
ruby_enterprise >= 0.0.0

Contingent cookbooks

application_buildpack Applicable Versions
application_git Applicable Versions
application_java Applicable Versions
application_javascript Applicable Versions
application_just_nodejs Applicable Versions
application_just_ruby Applicable Versions
application_mvn Applicable Versions
application_nginx Applicable Versions
application_nodejs Applicable Versions
application_php Applicable Versions
application_play Applicable Versions
application_procfile Applicable Versions
application_python Applicable Versions
application_ruby Applicable Versions
application_static Applicable Versions
application_wlp Applicable Versions
boilerplate_php Applicable Versions
cyclesafe_chef Applicable Versions
docker-registry Applicable Versions
errbit-server Applicable Versions
inwx-dns-updater Applicable Versions
ish Applicable Versions
jones Applicable Versions
nodestack Applicable Versions
phpstack Applicable Versions
postgresql_studio Applicable Versions
pythonstack Applicable Versions
rails_application Applicable Versions
seyren Applicable Versions
solr_app Applicable Versions
sugarcrm-ce Applicable Versions
variomedia-dns-updater Applicable Versions
zarafa-sabre Applicable Versions

No quality metric results found