Skip to content

Commit

Permalink
release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fraenki committed May 7, 2020
1 parent a23cbb9 commit 26dc6ea
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.1.0] - 2020-05-07
This is a maintenance release.

### Changed
* Fix duplicate declaration errors by replacing `ensure_resource()` with `ensure_packages()` ([#158])
* Re-enable the content-check for validating the server connection ([#152])

## [2.0.0] - 2020-04-14
This is a new major release. It aims to fix many long-standing limitations, hence it introduces several breaking changes and should be tested in non-producton environments. Starting with this release unit tests and acceptance tests are required for all new features, this should further stabilize the module.

Expand Down Expand Up @@ -201,7 +208,8 @@ This is the first release after extensive code refactoring and introduces multip
## 0.1.0
* Bugfix: Additional package as an ensure_resource

[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.0.0...HEAD
[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.1.0...HEAD
[2.1.0]: https://github.com/fraenki/puppet-galera/compare/2.0.0...2.1.0
[2.0.0]: https://github.com/fraenki/puppet-galera/compare/1.0.6...2.0.0
[1.0.6]: https://github.com/fraenki/puppet-galera/compare/1.0.5...1.0.6
[1.0.5]: https://github.com/fraenki/puppet-galera/compare/1.0.5...1.0.5
Expand All @@ -213,8 +221,10 @@ This is the first release after extensive code refactoring and introduces multip
[0.7.2]: https://github.com/fraenki/puppet-galera/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/fraenki/puppet-galera/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/fraenki/puppet-galera/compare/0.0.6...0.7.0
[#158]: https://github.com/fraenki/puppet-galera/pull/158
[#154]: https://github.com/fraenki/puppet-galera/pull/154
[#153]: https://github.com/fraenki/puppet-galera/pull/153
[#152]: https://github.com/fraenki/puppet-galera/pull/152
[#149]: https://github.com/fraenki/puppet-galera/pull/149
[#148]: https://github.com/fraenki/puppet-galera/pull/148
[#145]: https://github.com/fraenki/puppet-galera/pull/145
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,17 @@ class { 'galera':

Or if you just want to switch to using a local mirror, simply change the repo URL for the chosen `$vendor_type`. For Codership you would add something like this to Hiera:

# RHEL-based systems
```puppet
# RHEL-based systems
galera::repo::codership::yum:
baseurl: "http://repo.example.com/RPMS/%{facts.os.release.major}/RPMS/%{facts.os.architecture}/"
baseurl: "http://repo.example.com/RPMS/<%= $vendor_version_real %>/%{facts.os.release.major}/%{facts.os.architecture}/"
```
# Debian-based systems

```puppet
# Debian-based systems
galera::repo::codership::apt:
apt_location => "http://repo.example.com/apt/%{facts.os.distro.codename}/",
apt_location: "http://repo.example.com/apt/%{facts.os.distro.codename}/"
...
```

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fraenki-galera",
"version": "2.0.0",
"version": "2.1.0",
"author": "Frank Wall",
"summary": "Setup a Galera cluster on MySQL/MariaDB/XtraDB with Arbitrator support",
"license": "BSD-2-Clause",
Expand Down

0 comments on commit 26dc6ea

Please sign in to comment.