Chef cheat sheet: Difference between revisions

 
(13 intermediate revisions by the same user not shown)
[http://acrmp.github.com/foodcritic/ Foodcritic - A lint tool for your Opscode Chef cookbooks]
[https://github.com/etsy/foodcritic-rules Etsy's foodcritic rules]
ここで定義されているスタイルに合わせる。(最近 FC001 が違うという議論もあって面白い ;)
 
[http://wiki.opscode.com/display/chef/Opscode+Community+Summit+2 Opscode Community Summit 2 Session Documentation]
コミュニティサミットのドキュメント いろいろ参考になるかも。
 
== 導入 ==
[http://wiki.opscode.com/display/chef/Installing+Omnibus+Chef+Client+on+Linux+and+Mac Omnibus Installation]
 
<del>sudo true && curl -L https://www.opscode.com/chef/install.sh | sudo bash</del>
 
upgrade も ↑ で OK
 
<del>sudo true && curl -L https://www.opscode.com/chef/install.sh | sudo bash -s -- -v 10.12.0</del>
 
とか バージョン指定も可能 (いまのところ chef-client今は 10.1416.2 は駄目っぽい)
 
(2015/06/25 追記: 最近は curl | sudo bash はさすがにマズイという風潮が... なので公式サイトの表面からは消えてるようです。[https://downloads.chef.io/chef-client/])
 
== my recipes ==
knife.rb
<pre>
# EC2:
# EC2:
knife[:aws_access_key_id] = "---"
knife[:aws_secret_access_key] = "---"
=== node object ===
[http://wiki.opscode.com/display/chef/Recipes#Recipes-CommonAutomaticAttributes Common Automatic Attributes]
 
== knife-essentials ==
[https://github.com/jkeiser/knife-essentials Knife Essentials]
これは便利なので入れる方がよいそうです。
 
knife diff | fgrep diff
 
== berkshelf ==
[http://berkshelf.com/ Berkshelf - Manage a Cookbook or an Application's Cookbook dependencies]
便利っぽい
 
== spiceweasel ==
[http://wiki.opscode.com/display/chef/Spiceweasel Spiceweasel]
便利っぽい
 
== cookbook motd-tail ==
[https://github.com/opscode-cookbooks/motd-tail Updates motd.tail with Chef Roles]
node に login したときに、role を表示させる。
 
== WP CLI (WordPress Command Line Interface) ==