Skip to content

Commit

Permalink
Release 1.11.0 (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackallcode committed Jul 30, 2021
1 parent 5289f02 commit 17900a9
Show file tree
Hide file tree
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
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions library/cartridge_validate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 17900a9

Please sign in to comment.