The cookbook name is 'cassandra-dse' but the templates_cookbook is 'cassandra'. This make Chef look for the template file in cassandra cookbook instead of cassandra-dse cookbook. That's why Chef says
Chef::Exceptions::CookbookNotFound
Cookbook cassandra not found. If you're loading cassandra from another cookbook, make sure you configure the dependency in your metadata
To fix it, I have to override the attribute default['cassandra']['templates_cookbook'] = 'cassandra-dse'
Hi,
The cookbook name is 'cassandra-dse' but the
templates_cookbook
is 'cassandra'. This make Chef look for the template file incassandra cookbook
instead ofcassandra-dse cookbook
. That's why Chef saysChef::Exceptions::CookbookNotFound
To fix it, I have to override the attribute default['cassandra']['templates_cookbook'] = 'cassandra-dse'