cookbook 'yum-mysql-community', '= 2.0.3'
yum-mysql-community
(45) Versions
2.0.3
-
Follow22
Installs/Configures yum-mysql-community
cookbook 'yum-mysql-community', '= 2.0.3', :supermarket
knife supermarket install yum-mysql-community
knife supermarket download yum-mysql-community
yum-mysql-community Cookbook
The 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
.
Requirements
Platforms
- RHEL/CentOS and derivatives
- Fedora
Chef
- Chef 12.1+
Cookbooks
- compat_resource
Attributes
The following attributes are set by default
default['yum']['mysql-connectors-community']['repositoryid'] = 'mysql-connectors-community' default['yum']['mysql-connectors-community']['description'] = 'MySQL Connectors Community' default['yum']['mysql-connectors-community']['baseurl'] = 'http://repo.mysql.com/yum/mysql-connectors-community/el/$releasever/$basearch/' default['yum']['mysql-connectors-community']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc' default['yum']['mysql-connectors-community']['failovermethod'] = 'priority' default['yum']['mysql-connectors-community']['gpgcheck'] = true default['yum']['mysql-connectors-community']['enabled'] = true
default['yum']['mysql56-community']['repositoryid'] = 'mysql56-community' default['yum']['mysql56-community']['description'] = 'MySQL 5.6 Community Server' default['yum']['mysql56-community']['baseurl'] = 'http://repo.mysql.com/yum/mysql56-community/el/$releasever/$basearch/' default['yum']['mysql56-community']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc' default['yum']['mysql56-community']['failovermethod'] = 'priority' default['yum']['mysql56-community']['gpgcheck'] = true default['yum']['mysql56-community']['enabled'] = true
default['yum']['mysql57-community-dmr']['repositoryid'] = 'mysql57-community-dmr' default['yum']['mysql57-community-dmr']['description'] = 'MySQL 5.7 Community Server Development Milestone Release' default['yum']['mysql57-community-dmr']['baseurl'] = 'http://repo.mysql.com/yum/mysql56-community/el/$releasever/$basearch/' default['yum']['mysql57-community-dmr']['gpgkey'] = 'https://raw.githubusercontent.com/rs-services/equinix-public/master/cookbooks/db_mysql/files/centos/mysql_pubkey.asc' default['yum']['mysql57-community-dmr']['failovermethod'] = 'priority' default['yum']['mysql57-community-dmr']['gpgcheck'] = true default['yum']['mysql57-community-dmr']['enabled'] = true
Recipes
- mysql55 - Sets up the mysql56-community repository on supported
- platforms
yum_repository 'mysql55-community' do mirrorlist 'https://repo.mysql.com/yum/mysql-5.5-community/el/$releasever/$basearch/' description '' enabled true gpgcheck true end
- mysql56 - Sets up the mysql56-community repository on supported
- platforms
yum_repository 'mysql56-community' do mirrorlist 'https://repo.mysql.com/yum/mysql-5.6-community/el/$releasever/$basearch/' description '' enabled true gpgcheck true end
- connectors - Sets up the mysql-connectors-community repository on supported
- platforms
Usage Example
To disable the mysql-community-dmr repository through a Role or Environment definition
default_attributes( :yum => { :mysql57-community-dmr => { :enabled => { false } } } )
Uncommonly 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:
node.default['yum']['mysql57-community-dmr']['enabled'] = true node.default['yum']['mysql57-community-dmr']['managed'] = true include_recipe 'mysql57-community-dmr'
More Examples
Point the mysql56-community repositories at an internally hosted server.
node.default['yum']['mysql56-community']['enabled'] = true
node.default['yum']['mysql56-community']['mirrorlist'] = nil
node.default['yum']['mysql56-community']['baseurl'] = 'https://internal.example.com/mysql/mysql56-community/'
node.default['yum']['mysql56-community']['sslverify'] = false
include_recipe 'mysql56-community'
License & Authors
Author: Cookbook Engineering Team (cookbooks@chef.io)
Copyright: 2011-2016, Chef Software, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
yum-mysql-community Cookbook CHANGELOG
This file is used to list changes made in each version of the yum-mysql-community cookbook.
2.0.3 (2016-12-22)
- Depend on the latest compat_resource cookbook
- Cookstyle fixes
2.0.2 (2016-11-26)
- Remove yum-epel from the readme
- Switch to inspec for testing
- Fix mysql55 in travis
2.0.1 (2016-11-07)
- yum_repository mirrorlist value updated in Readme
2.0.0 (2016-11-05)
- Replace yum dependency with compat_resource
- Replace 'epel' with 'mysql-community' in the readme
1.0.0 (2016-09-06)
- Testing updates
- Remove support for Chef 11
v0.3.0 (2016-07-22)
- Support Oracle Linux
- Correctly state the required yum cookbook version in the readme
- Add chef_version metadata to metadata.rb
v0.2.0 (2016-03-29)
- Add support for the 2016 Amazon Linux releases
- Update test dependency gems and remove Guard
- Test in Travis CI using kitchen-dokken
v0.1.21 (2015-12-01)
- Fixing if/unless logic in recipes
v0.1.20 (2015-11-30)
- Fixed attributes with a false value not being passed
v0.1.19 (2015-10-28)
- Fixing Chef 13 nil property deprecation warnings
v0.1.18 (2015-09-21)
- Added Travis CI config for lint and unit testing
- Added Chef standard Rubocop file and resolved all warnings
- Added Chef standard chefignore and .gitignore files
- Add supported platforms to the metadata
- Added source_url and issues_url to the metadata
- Added long_description to the metadata
- Updated and expanded development dependencies in the Gemfile
- Added contributing, testing, and maintainers docs
- Added platform requirements to the readme
- Added Travis and cookbook version badges to the readme
- Update Chefspec to 4.X format
v0.1.17 (2015-04-06)
- Updating pubkey link from someara to chef-client github orgs
v0.1.16 (2015-03-25)
- Adding support Amazon Linux 2015.03 to all channels
v0.1.15 (2015-03-25)
- Added support for amazon linux 2015.03
v0.1.14 (2015-03-12)
- The content of 0.1.13 is questionable: didn't have changelog entry, may have had merged attribute change, but let's be clear and say at least this version 0.1.14 is the right thing.
v0.1.13 (2015-03-12)
- 3 corrected typo in public key attribute
v0.1.12 (2015-01-20)
- Minor style updates
v0.1.11 (2014-07-21)
- Adding RHEL-7 support
v0.1.10 (2014-07-21)
- Adding mysql-5.7 and centos 7 support
v0.1.8 (2014-06-18)
- Updating to support real RHEL
v0.1.6 (2014-06-16)
Fixing typo in mysql55-community attributes
v0.1.4 (2014-06-13)
- updating url to keys in cookbook attributes
v0.1.2 (2014-06-11)
- Move files/mysql_pubkey.asc to files/default/mysql_pubkey.asc
v0.1.0 (2014-04-30)
Initial release
Collaborator Number Metric
2.0.3 passed this metric
Contributing File Metric
2.0.3 passed this metric
Foodcritic Metric
2.0.3 passed this metric
License Metric
2.0.3 passed this metric
Testing File Metric
2.0.3 passed this metric
2.0.3 passed this metric
2.0.3 passed this metric
Foodcritic Metric
2.0.3 passed this metric
License Metric
2.0.3 passed this metric
Testing File Metric
2.0.3 passed this metric
2.0.3 passed this metric
2.0.3 passed this metric
Testing File Metric
2.0.3 passed this metric
2.0.3 passed this metric