I'm trying to use the latest version of the mysql cookbook in the Chef Supermarket:
https://supermarket.chef.io/cookbooks/mysql
(8.3.1)
I've added it as a wrapper cookbook and created a small recipe I'm trying to spin up in Test Ktichen:
include_recipe 'mysql'
mysql_service 'foo' do
port '3306'
version '5.7'
initial_root_password 'change me'
action [:create, :start]
end
mysql_config 'logging' do
instance 'instance-1'
source 'my.cnf.erb'
action :create
notifies :restart, 'mysql_service[instance-1]'
end
This quickly fails on converge with:
could not find recipe default for cookbook mysql
The depends 'mysql' is in the cookbook metadata.rb.
I've seen some posts that say this cookbook has undergone major refactoring... but I still don't have a clue as how to actually use it...