How to call another chef recipe within same or other Cookbook?
How to call another chef recipe within same Cookbook?
You can use include_recipe with a file name of the another-recipe such as
include_recipe 'another-recipe.rb'
How to call another chef recipe with another Cookbook?
You can use include_recipe with a cookbookname::recipe of the another cookbook such as
include_recipe 'ebs::raids'
include_recipe '::my_java' # works still after you rename your cookbook
include_recipe 'base::my_java' # works only as long as your cookbook name is base
But when there is a include_recipe ‘my_java’ line in cookbook, which also requires a depends ‘my_java’ line in metadata.
Running multiple Chef Cookbook at a time?
You can add multiple Cookbook in one using following…
chef-client -z --runlist 'recipe[cookbook1::default],recipe[cookbook2::default],recipe[cookbook3::default],recipe[cookbook4::default]'
Chef Essential Tutorial By Rajesh Kumar in 2020 – Session-1
Chef Essential Tutorial By Rajesh Kumar in 2020 – Session-2
Chef Essential Tutorial By Rajesh Kumar in 2020 – Session-3
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024