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

Commit 17900a9

Browse files
authored
Release 1.11.0 (#376)
1 parent 5289f02 commit 17900a9

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ Please update `ansible-galaxy install` command in
1010
README.md to use the newest tag with new release
1111
-->
1212

13+
## [1.11.0] - 2021-07-30
14+
1315
### Added
1416

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

2124
### Changed
2225

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

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

3034
## [1.10.0] - 2021-06-04
3135

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Note that running the role may require
3737
First, you need to install this role using `ansible-galaxy`:
3838

3939
```bash
40-
$ ansible-galaxy install tarantool.cartridge,1.10.0
40+
$ ansible-galaxy install tarantool.cartridge,1.11.0
4141
```
4242

4343
## Quick start

library/cartridge_validate_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -668,6 +668,10 @@ def validate_config(params):
668668
"Use 'cartridge_failover_params' instead."
669669
)
670670

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

673677

0 commit comments

Comments
 (0)