This repository was archived by the owner on Jan 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,16 @@ Please update `ansible-galaxy install` command in
1010README.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
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Note that running the role may require
3737First, 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments