InterviewSolution
Saved Bookmarks
| 1. |
Explain Berkshelf workflow in Chef. |
|
Answer» Berkshelf is the dependency manager that comes with the Chef Development Kit. Whenever you CREATE a cookbook say for eg with “chef generate cookbook” command a file called Berksfile is CREATED on top of the cookbook directory. This file contains the source path for all cookbooks. Assume that you created a NEW cookbook called “my-app” which depends on another community cookbook “nginx” from public Chef Supermarket. The typical steps we follow are:
|
|