Greg Karékinian bdfb3a1afb Downgrade mysql cookbook for now
It doesn't play well with our current dev server setup
2017-06-16 22:44:57 +02:00

1 line
6.0 KiB
JSON

{"name":"yum-mysql-community","version":"2.1.0","description":"Installs/Configures yum-mysql-community","long_description":"# yum-mysql-community Cookbook\n\n[![Build Status](https://travis-ci.org/chef-cookbooks/yum-mysql-community.svg?branch=master)](http://travis-ci.org/chef-cookbooks/yum-mysql-community) [![Cookbook Version](https://img.shields.io/cookbook/v/yum-mysql-community.svg)](https://supermarket.chef.io/cookbooks/yum-mysql-community)\n\nThe yum-mysql-community cookbook takes over management of the default repository ids shipped with mysql*-community-release. It allows attribute manipulation of `mysql-connectors-community`, `mysql56-community`, and `mysql57-community-dmr`.\n\n## Requirements\n\n### Platforms\n\n- RHEL/CentOS and derivatives\n- Fedora\n\n### Chef\n\n- Chef 12.1+\n\n### Cookbooks\n\n- compat_resource\n\n## Attributes\n\nThe following attributes are set by default\n\n```ruby\ndefault['yum']['mysql-connectors-community']['repositoryid'] = 'mysql-connectors-community'\ndefault['yum']['mysql-connectors-community']['description'] = 'MySQL Connectors Community'\ndefault['yum']['mysql-connectors-community']['baseurl'] = 'http://repo.mysql.com/yum/mysql-connectors-community/el/$releasever/$basearch/'\ndefault['yum']['mysql-connectors-community']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc'\ndefault['yum']['mysql-connectors-community']['failovermethod'] = 'priority'\ndefault['yum']['mysql-connectors-community']['gpgcheck'] = true\ndefault['yum']['mysql-connectors-community']['enabled'] = true\n```\n\n```ruby\ndefault['yum']['mysql56-community']['repositoryid'] = 'mysql56-community'\ndefault['yum']['mysql56-community']['description'] = 'MySQL 5.6 Community Server'\ndefault['yum']['mysql56-community']['baseurl'] = 'http://repo.mysql.com/yum/mysql56-community/el/$releasever/$basearch/'\ndefault['yum']['mysql56-community']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc'\ndefault['yum']['mysql56-community']['failovermethod'] = 'priority'\ndefault['yum']['mysql56-community']['gpgcheck'] = true\ndefault['yum']['mysql56-community']['enabled'] = true\n```\n\n```ruby\ndefault['yum']['mysql57-community-dmr']['repositoryid'] = 'mysql57-community-dmr'\ndefault['yum']['mysql57-community-dmr']['description'] = 'MySQL 5.7 Community Server Development Milestone Release'\ndefault['yum']['mysql57-community-dmr']['baseurl'] = 'http://repo.mysql.com/yum/mysql56-community/el/$releasever/$basearch/'\ndefault['yum']['mysql57-community-dmr']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc'\ndefault['yum']['mysql57-community-dmr']['failovermethod'] = 'priority'\ndefault['yum']['mysql57-community-dmr']['gpgcheck'] = true\ndefault['yum']['mysql57-community-dmr']['enabled'] = true\n```\n\n## Recipes\n\n- mysql55 - Sets up the mysql56-community repository on supported\n- platforms\n\n```ruby\n yum_repository 'mysql55-community' do\n mirrorlist 'https://repo.mysql.com/yum/mysql-5.5-community/el/$releasever/$basearch/'\n description ''\n enabled true\n gpgcheck true\n end\n```\n\n- mysql56 - Sets up the mysql56-community repository on supported\n- platforms\n\n```ruby\n yum_repository 'mysql56-community' do\n mirrorlist 'https://repo.mysql.com/yum/mysql-5.6-community/el/$releasever/$basearch/'\n description ''\n enabled true\n gpgcheck true\n end\n```\n\n- connectors - Sets up the mysql-connectors-community repository on supported\n- platforms\n\n## Usage Example\n\nTo disable the mysql-community-dmr repository through a Role or Environment definition\n\n```ruby\ndefault_attributes(\n :yum => {\n :mysql57-community-dmr => {\n :enabled => {\n false\n }\n }\n }\n )\n```\n\nUncommonly used repositoryids are not managed by default. This is speeds up integration testing pipelines by avoiding yum-cache builds that nobody cares about. To enable the mysql-community-dmr repository with a wrapper cookbook, place the following in a recipe:\n\n```ruby\nnode.default['yum']['mysql57-community-dmr']['enabled'] = true\nnode.default['yum']['mysql57-community-dmr']['managed'] = true\ninclude_recipe 'mysql57-community-dmr'\n```\n\n## More Examples\n\nPoint the mysql56-community repositories at an internally hosted server.\n\n```\nnode.default['yum']['mysql56-community']['enabled'] = true\nnode.default['yum']['mysql56-community']['mirrorlist'] = nil\nnode.default['yum']['mysql56-community']['baseurl'] = 'https://internal.example.com/mysql/mysql56-community/'\nnode.default['yum']['mysql56-community']['sslverify'] = false\n\ninclude_recipe 'mysql56-community'\n```\n\n## License & Authors\n\n**Author:** Cookbook Engineering Team ([cookbooks@chef.io](mailto:cookbooks@chef.io))\n\n**Copyright:** 2011-2016, Chef Software, Inc.\n\n```\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","maintainer":"Chef Software, Inc.","maintainer_email":"cookbooks@chef.io","license":"Apache-2.0","platforms":{"amazon":">= 0.0.0","centos":">= 0.0.0","fedora":">= 0.0.0","oracle":">= 0.0.0","redhat":">= 0.0.0","scientific":">= 0.0.0"},"dependencies":{"compat_resource":">= 12.16.3"},"recommendations":{},"suggestions":{},"conflicting":{},"providing":{},"replacing":{},"attributes":{},"groupings":{},"recipes":{},"source_url":"https://github.com/chef-cookbooks/yum-mysql-community","issues_url":"https://github.com/chef-cookbooks/yum-mysql-community/issues","chef_version":">= 12.1","ohai_version":{}}