$chef generate repo chef-repo $cd chef-repo #cookbook作成 $knife cookbook create elastic #berkshelfを使う為に初期化 $cd cookbooks/elastic && berks init #javaとelasticsearchを追加 $vi Berksfile $cat Berksfile source "https://supermarket.chef.io" metadata cookbook 'elasticsearch', '~> 2.3.2' cookbook 'java', '~> 1.39.0' #defaultのjdkバージョンだとelasticsearchが動かなかったのでバージョン指定 $vi attributes/default.rb $cat attributes/def