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

metachef (1) Versions 3.0.4

Cluster orchestration -- coordinates discovery, integration and decoupling of cookbooks

Policyfile
Berkshelf
Knife
cookbook 'metachef', '~> 3.0.4', :supermarket
cookbook 'metachef', '~> 3.0.4'
knife supermarket install metachef
knife supermarket download metachef
README
Dependencies
Quality 17%

metachef chef cookbook

Cluster orchestration -- coordinates discovery, integration and decoupling of cookbooks

Overview

Cookbooks repeatably express these and other aspects:
* "I launch these daemons: ..."
* "I haz a bukkit, itz naem '/var/log/lol'"
* "I have a dashboard at 'http://....:...'"
* ... and much more.

Wouldn't it be nice if announcing a log directory caused...
- my log rotation system to start rotating my logs?
- a 'disk free space' gauge to be added to the monitoring dashboard for that service?
- flume (or whatever) began picking up my logs and archiving them to a predictable location?
- in the case of standard apache logs, a listener to start counting the rate of requests, 200s, 404s and so forth?
Similarly, announcing ports should mean
- the firewall and security groups configure themselves correspondingly
- the monitor system starts regularly pinging the port for uptime and latency
- and pings the interfaces that it should not appear on to ensure the firewall is in place?

Cluster chef make those aspects standardized and predictable, and provides integration and discovery hooks. The key is to make integration inevitable: No more forgetting to rotate or monitor a service, or having a config change over here screw up a dependent system over there.


(below is a planning document and may not perfectly reflect reality)

FIXME: update for version_3 release

Attributes are scoped by cookbook and then by component.
* If I declare i_haz_a_service_itz('redis), it will look in node[:redis].
* If I declare i_haz_a_service_itz('hadoop-namenode'), it will look in node[:hadoop] for cookbook-wide concerns and node[:hadoop][:namenode] for component-specific concerns.

  • The cookbook scope is always named for its cookbook. Its attributes live innode[:cookbook_name].
    • if everything in the cookbook shares a concern, it sits at cookbook level. So the hadoop log directory (shared by all its components) is at (scratch_root)/hadoop/log.
  • If there is only one component, it can be implicitly named for its cookbook. In this case, it is omitted: the component attributes live in node[:cookbook_name] (which is the same as the component name).
  • If there are multiple components, they will live in node[:cookbook_name][:component_name] (eg [:hadoop][:namenode] or [:flume][:master]. In file names, these become (whatever)/cookbook_name/component_name/(whatever); in other cases they are joined as cookbook_name-component_name.

Allow nodes to discover the location for a given service at runtime, adapting when new services register.

Discovery

Allow nodes to discover the location for a given service at runtime, adapting
when new services register.

Operations:

  • register for a service. A timestamp records the last registry.
  • discover all chef nodes that have registered for the given service.
  • discover the most recent chef node for that service.
  • get the 'public_ip' for a service -- the address that nodes in the larger world should use
  • get the 'public_ip' for a service -- the address that nodes on the local subnet / private cloud should use

Implementation

Nodes register a service by calling announce, which sets a hash containing
'timestamp' (the time of registry) and other metadata passed in.

Recipes

  • default - Base configuration for metachef

Integration

Supports platforms: debian and ubuntu

Attributes

  • [:metachef][:conf_dir] - (default: "/etc/metachef")
  • [:metachef][:log_dir] - (default: "/var/log/metachef")
  • [:metachef][:home_dir] - (default: "/etc/metachef")
  • [:metachef][:user] - (default: "root")
  • [:users][:root][:primary_group] - (default: "root")

License and Author

Author:: Philip (flip) Kromer - Infochimps, Inc (coders@infochimps.com)
Copyright:: 2011, Philip (flip) Kromer - Infochimps, 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.

readme generated by cluster_chef's cookbook_munger

Collaborator Number Metric
            

3.0.4 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

3.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

3.0.4 failed this metric

FC009: Resource attribute not recognised: metachef/definitions/daemon_user.rb:58
FC046: Attribute assignment uses assign unless nil: metachef/attributes/default.rb:16
FC046: Attribute assignment uses assign unless nil: metachef/attributes/default.rb:18
FC064: Ensure issues_url is set in metadata: metachef/metadata.rb:1
FC065: Ensure source_url is set in metadata: metachef/metadata.rb:1
FC066: Ensure chef_version is set in metadata: metachef/metadata.rb:1
FC069: Ensure standardized license defined in metadata: metachef/metadata.rb:1
FC072: Metadata should not contain "attribute" keyword: metachef/metadata.rb:1
FC075: Cookbook uses node.save to save partial node data to the chef-server mid-run: metachef/libraries/node_utils.rb:81
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

3.0.4 passed this metric

Testing File Metric
            

3.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

3.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number