Chef存储库:我应该提交.chef /和.berkshelf / folders吗?

时间:2013-08-01 08:04:56

标签: chef

我正在做厨师教程,我从https://learnchef.opscode.com下载了厨师资料库zip。

在教程中它说要将所有内容添加到git(git add .),但我很谨慎:我是否应该在repo中提交那些隐藏文件夹:

  • .chef /
  • .berkshelf /

我想知道因为.chef/包含私钥文件。

1 个答案:

答案 0 :(得分:2)

通常,您会将以下内容添加到.gitignore:

.chef/*.pem
.chef/encrypted_data_bag_secret

对于berkshelf,我相信默认的.gitignore生成为:

.vagrant
Berksfile.lock
*~
*#
.#*
\#*#
.*.sw[a-z]
*.un~
/cookbooks

# Bundler
Gemfile.lock
bin/*
.bundle/*

.kitchen/
.kitchen.local.yml