InterviewSolution
Saved Bookmarks
| 1. |
What is .kitchen.yml file? Why is it used? |
|
Answer» kitchen.yml file is the CONFIGURATION file for the Test Kitchen. All details needed to create a sandbox environment for testing our infrastructure using Chef is included in .kitchen.yml file Syntax of a .kitchen.yml file is as follows: The basic structure of a .kitchen.yml file is as follows: driver: name: driver_name provisioner: name: provisioner_name verifier: name: verifier_name transport: name: transport_name platforms: - name: platform-version driver: name: driver_name suites: - name: suite_name run_list: - recipe[cookbook_name::recipe_name]where
|
|