The chef documentation is pretty bad. And Google isn't helping me.
Can anyone point me at a decent article or something that would help me get started?
My specific issues are:
- How do I get a client to read my configuration? chef-solo seems like the best start (I don't want to run an OpenID server or Merb)
- How do I configure Apache to serve Django? I already know how to do this via regular server configuration, but I figure an example Chef recipe would be a good start;
Updates
Original response follows
First, as of this writing, the latest version of Chef is 0.9.8. Opscode distributes Chef as RubyGems, and has up-to-date Debian/Ubuntu packages as well. RPMs for the latest version are released by a member of the community.
Second, in versions 0.8.x+ and higher, OpenID is no longer required for authentication. Merb is required for the Server because it is a Merb web application.
Opscode hosts a Chef Server as a Service called The Opscode Platform. You can signup and get started. It is free during the "feature beta", and once it leaves beta it is free for up to 5 nodes. If you sign up there's a getting started guide on Opscode's help site.
Overview of getting started:
As for Django and Apache2:
You'll need to write one that deploys your Django application code. The Apache2 cookbook contains a Definition to help set up a virtual host for web applications.
You can help improve the documentation by submitting a ticket in the "Documentation" component of the Chef project. If you have trouble with the Open Source Chef Server, the best places to ask for help are the Chef Mailing List, or the #chef IRC channel on FreeNode. If you sign up for the Platform you have access to the help site to submit support requests.
Disclosure: I work for Opscode.
Late, but: http://ericholscher.com/blog/2010/nov/8/building-django-app-server-chef/