Tim Kuhlman 74ed32bcf4 Re-enabled query cache.
The real cause of apparently cached queries was solved in the notification engine.
2014-05-19 15:11:22 -06:00

35 lines
714 B
JSON

{
"name": "MySQL",
"description": "Sets up MySQL",
"json_class": "Chef::Role",
"default_attributes": {
"percona": {
"backup": {
"password": "password"
},
"cluster": {
"package": "percona-xtradb-cluster-56"
},
"main_config_file": "/etc/mysql/my.cnf",
"server": {
"bind_address": "0.0.0.0",
"replication": {
"password": "password"
},
"root_password": "password",
"skip_name_resolve": true
}
}
},
"override_attributes": {
},
"chef_type": "role",
"run_list": [
"role[Basenode]",
"recipe[percona::cluster]",
"recipe[mini-mon::mysql_schema]"
],
"env_run_lists": {
}
}