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

The codenamephp_chef cookbook has been deprecated

Author provided reason for deprecation:

The codenamephp_chef cookbook has been deprecated and is no longer being maintained by its authors. Use of the codenamephp_chef cookbook is no longer recommended.

RSS

codenamephp_chef (6) Versions 2.1.0

Provides resources to install chef-workstation

Policyfile
Berkshelf
Knife
cookbook 'codenamephp_chef', '= 2.1.0', :supermarket
cookbook 'codenamephp_chef', '= 2.1.0'
knife supermarket install codenamephp_chef
knife supermarket download codenamephp_chef
README
Dependencies
Quality 67%

Chef Cookbook Chef

Build Status

The default cookbook gets the environment ready to develop chef cookbooks by installing chef-workstation.

Requirements

Supported Platforms

  • Debian Buster

Chef

  • Chef 13.0+

Cookbook Depdendencies

Usage

Add the cookbook as a dependency, e.g. in your Berksfile:

cookbook 'codenamephp_chef', '~> 2.0.0'

Then use the resource in your recipes.

Resources

Workstation

The codenamephp_chef_workstation installs the chef-workstation package from the apt repository. The repository is added automatically.

Actions

  • install: Installs the resource

Properties

  • puge_chefdk: Boolean to purge the chefdk (old package) prior to installing, defaults to false

Examples

# Minimal properties
recipe do
  codenamephp_chef_workstation 'Install chef-workstation'
end

# don't purge chefdk
recipe do
  codenamephp_chef_workstation 'Install chef-workstation' do
    purge_chefdk false
  end
end

Environment

The codenamephp_chef_environment resource adds the chef init command and the chef ruby bin to path by using codenamephp_bash to manage bashrc.d
configs for the given user.

Actions

  • install: Installs the bash files to init chef

Properties

  • users: Array of usernames as strings for which the envirnment should be installed
  • skel: Boolean to enable the management of /etc/skel so users that are created after chef will get the chef init as well, defaults to false

Examples

# Minimal properties
codenamephp_chef_environment 'Setup chef' do
  users %w[user1 user2]
end

# also manage skel
recipe do
  codenamephp_chef_environment 'Setup chef' do
    users %w[user1 user2]
    skel true
  end
end

Foodcritic Metric
            

2.1.0 passed this metric

No Binaries Metric
            

2.1.0 passed this metric

Version Tag Metric
            

2.1.0 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