Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
Release 1.11.0 (#376)
Browse files Browse the repository at this point in the history
hackallcode authored Jul 30, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5289f02 commit 17900a9
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -10,13 +10,16 @@ Please update `ansible-galaxy install` command in
README.md to use the newest tag with new release
-->

## [1.11.0] - 2021-07-30

### Added

- Step `cleanup_instance_files` to clean up data of stopped instance
- Add availability to set environment variables for instance service
- Add `instances_from_same_machine` variable in preparation
- Add `check_new_topology` step to compare inventory and real cluster topology
- Availability to disable instances via `disabled` flag
- Add `backup`, `backup_start`, `backup_stop` and `restore` steps to back up and restore instances

### Changed

@@ -26,6 +29,7 @@ README.md to use the newest tag with new release

- Long facts caching when playbook has two or more role imports
- Now select control instance task ignores bad instances from membership
- Fix instance joining when leader is not first

## [1.10.0] - 2021-06-04

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ Note that running the role may require
First, you need to install this role using `ansible-galaxy`:

```bash
$ ansible-galaxy install tarantool.cartridge,1.10.0
$ ansible-galaxy install tarantool.cartridge,1.11.0
```

## Quick start
4 changes: 4 additions & 0 deletions library/cartridge_validate_config.py
Original file line number Diff line number Diff line change
@@ -668,6 +668,10 @@ def validate_config(params):
"Use 'cartridge_failover_params' instead."
)

warnings.append(
"Since 2.0.0 all variables without prefix will be prefixed with 'tc_', "
"prefix 'cartridge_' will be replaced by 'tc_'."
)
return helpers.ModuleRes(changed=False, warnings=warnings)


0 comments on commit 17900a9

Please sign in to comment.