- chef-metrics, from @portertech, is a report/exception handler for sending Chef metrics to one or more endpoints.
- chef-journalist, also from @portertech, is another report/exception handler. This one is used to output a list of updated resources.
- As we mentioned in Episode 35: A Year in Review, foodcritic had a major release: 1.7.0. This release includes a number of bugfixes and new features including the removal of the controversial FC001. Check the project's CHANGELOG for more details.
- @someara wrote up a blog post recently titled "Promises, Lies, and Dry-Run Mode". In this post Sean rips away the security blanket of dry-run (or noop or why-run) mode leaving you in the cold. He walks through some of the ways mondern configuration systems lies to us. Of course, there's a cookbook that goes along with the post: dry-run-lies.
- Need a quick way to upgrade an outdated
chef-client
on your Vagrant box? @dougireton recently wrote a post about his approach to this which involves using twoconfig.vm.provision
blocks in the Vagrantfile. Automatically Upgrading Chef Client on Vagrant Up - Doug also recently wrote a post about Creating an LWRP. Part 1 of this series looks at the resource side of the LWRP. The resource is the simple interface you'll interact with in your recipe files. Watch Doug's blog for Part 2.
- Are you ready to move your cookbooks from one giant
chef-repo
to an individual repo for each cookbook? Be sure to checkout @sethvargo's blog post, Moving to Individual Cookbooks. In this post, Seth provides some ruby scripts and step-by-step instructions for moving your cookbooks to private repos on github. - SoloWizard is a tool that makes it painless to create a configurable chef solo script to get your development machine humming. Check out the SoloWizard site where you can create your personal Solo Wizard script.
- Test-kitchen 0.7.0 introduces a new OpenStack runner. You can now run your test-kitchen in OpenStack instead of Vagrant. Check-out Opscode Chef Integration Tests Now On OpenStack With Test Kitchen 0.7.0 from Matthias Marschall.
- David P. Kleinschmidt (aka zobar on github) announced ingredients a humble suggestion for keeping complex Chef cookbooks maintainable.
- Engine Yard announced their first Engine Yard Innovators Awards with categories for Ruby, PHP, Open Source, and DevOps. Congrats to Food Fight Show co-hot, @nathenharvey, for winning the DevOps category.
- Jan-8 - DevOps DC - January Meetup
- Jan-9 - DevOps Minneapolis - Continuous Delivery - Improving the process of software delivery
- Jan-10 - Chicago Chef User Group - Chef Cafe
- Jan-14 - LakeMary DevOps, in Lake Mary, FL - Open Discussion
- Jan-15 - Infrastructure Coders (Melbourne, Australia) - January Meetup
- Jan-15 - London DevOps - Beyond Webscale: What to do when you get beyond 300 boxes, but you're not Twitter
- Jan-15 - Opscode Chef Meetup - First Meetup
- Jan-16 - San Diego DevOps - Monthly Meeting
- Jan-17 - DevOps Milwaukee - Continuous Delivery concepts and the tool chains that support them.
- Jan-17 - Bay Area Chef User Group - Chef Cafe
- Jan-17 - London Continuous Delivery - A date with Opscode (Chef) - Infrastructure Automation in 2013
- Jan-22 - Chef-BOSTON - Chef for OpenStack and Chef 11 with Matt Ray
- Feb-2 - Feb-4 FOSDEM 2013 - Be sure to stop by the Configuration Systems Management devroom to say 'hi' to Brian and Nathen and pick-up your Food Fight Show stickers.
- Feb-4 - Los Angeles Chef Users Group - Edmunds' Continuous Delivery with Chef
You've got a great story or two to share about Chef and how automation has transformed the way you work. Why not share that at your local meetup group or by submitting a talk to one of these conferences? CFPs are closing soon so submit your talk today!
- Velocity - CFP closes 10-Jan
- Big Ruby Conf - This year there's an "Infrastructure as Code" theme - CFP closes 11-Jan
- CascadiaIT - CFP closes 16-Jan
- Mountain West RubyConf - This year includes a DevOps track! - CFP closes 19-Jan.
- #ChefConf 2013 - You have to be there! - CFP closes 15-Feb
Use promotional code 'FOODFIGHT' to save 10% off Chef Introductory Workshops in DC, San Francisco, Boston, Portland, New York, Philadelphia, Austin, Chicago, Miami, Los Angeles, Denver, and Atlanta.
#ChefConf 2013 will be taking place April 22-24 in San Francisco. Order your tickets with promotional code 'FOODFIGHT' to save 15%.
We want to hear YOUR stories at #ChefConf! Propose a talk today.
- builder - chrisroberts - Building helpers. Provides LWRPs to help DRY building things with Chef.
- cloudfoundry-filesystem-service - andreacampi - Install a Cloud Foundry filesystem service gateway, an optional component of a Cloud Foundry installation.
- cloudfoundry-mongodb-service - andreacampi - Install a Cloud Foundry MongoDB gateway or node, optional components of a Cloud Foundry installation.
- cloudfoundry-rabbitmq-service - andreacampi - Install a Cloud Foundry RabbitMQ gateway or node, optional components of a Cloud Foundry installation.
- cloudfoundry-service_broker - andreacampi - Installs/Configures cloudfoundry_service_broker
- cloudfoundry_service - andreacampi - basic functionality for writing cookbooks that manage services in a Cloud Foundry installation.
- delayed_evaluator - chrisroberts - This is a PoC cookbook to show a working solution for delayed attribute evaluation within resource blocks. See also CHEF-1814
- dry-run-lies - someara - Installs/Configures dry-run-lies
- ernie - clundquist - Installs/Configures ernie, a BERT-RPC server implementation that uses an Erlang server to accept incoming connections, and then delegates the request to custom modules that you can write in any language.
- fpm-tng - chrisroberts - The next generation of effing package management on Chef. This cookbook installs fpm to a given Ruby. It also provides some useful LWRPs to help build packages in a Chef friendly manner.
- group - clundquist - Setup groups via databags, modeled after @fnichol's chef-user cookbook. Setup groups via databags.
- moxi - clundquist - Installs/Configures moxi
- nginx_vhost - clundquist - Installs/Configures nginx_vhost
- ngircd - retr0h - Installs/Configures ngircd
- openvz - clundquist - Installs/Configures openvz
- playonlinux - mray - Installs/Configures playonlinux, a WINE installer. Matt created this cookbook so he could play StarCraft.
- razor - fnichol - Chef cookbook to install and manage Razor, a power control, provisioning, and management application designed to deploy both bare-metal and virtual computer resources. An LWRP is provided to manage OS and micro kernel images.
- rc_mon - chrisroberts - RcMon is a simple process monitoring helper. It helps to ensure processes stay up and that they are behaving properly. It's simple, straight forward, and best of all lightweight.
- remote_syslog - clundquist - Installs/Configures remote_syslog
- repmgr - chrisroberts - Installs and configures repmgr to enable and monitor PostgreSQL replication.
- services - clundquist - lets you preform a variety of actions on many services easily. Create a
services
attribute on your node that is a hash of service names and actions:node.services = {'acpid':['stop','disable'],'atd':['stop','disable']}
. Handy for bulk actions but beware of flapping if you includerestart
as an action. - sidekiq - sax - Installs/Configures sidekiq
- ssh-util - markolson - Provides two LWRPs to manage system-wide and per-user ssh_config and known_host files.
- x11vnc - jgoulah - Installs/Configures x11vnc
- cloudfoundry (1.1.2) - andreacampi
- cloudfoundry-cloud_controller (1.2.0) - andreacampi
- cloudfoundry-dea (1.1.1) - andreacampi
- backup (0.0.4) - fujin
- annoyances (0.3.0) - mray
- afw (0.0.5) - jvehent
- 1password (1.0.6) - jtimberman
- cloudfoundry-nginx (1.0.3) - andreacampi
- cloudfoundry-ruby-runtime (1.1.2) - andreacampi
- cloudfoundry-stager (1.0.3) - andreacampi
- control_groups (0.1.0) - chrisroberts
- cpan-plus (0.0.3) - melezhik
- deploy_wrapper (0.0.2) - cwjohnston
- discovery (0.2.0) - fujin
- gpg (0.1.1) - chrisroberts
- nats (1.0.1) - andreacampi
- omnibus_updater (0.1.0) - chrisroberts
- php-fpm (0.3.1) - wik
- pkg-build (0.1.4) - chrisroberts
- ruby_build (0.7.2) - fnichol
- stunnel (2.0.0) - ampledata
- ulimit (0.1.2) - bmhatfield
- uwsgi (0.0.9) - idyedov