1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/changelogs/fragments
patchback[bot] 4295ee0bb4
Enable counter_enabled.py to support batch mode (#3709) (#3732)
* Enable counter_enabled.py to support serial mode

Enable counter_enabled.py to support batch playbook executions using the serial tag in plays. Currently, the host counter gets reset at the beginning of every task. However, during batch executions we want it to keep track of the previous batch executions and print the host counter based on the previous runs. This proposal keeps track of how many servers have been updated in previous batches and starts the host counter at that tracked value.

```
- hosts: allthethings
  gather_facts: no
  serial:
    - 3
    - 15%
    - 20%
    - 35%
    - 55%
    - 90%
    - 100%
  tasks:
    - name: Ping Hello!
      ping:
        data: "Hello!!!!"
```

* Reset task counter on play start

Reset task counter on play start for batch mode playbook executions.

* Add changelog fragment

* change changelog fragment after feedback

Co-authored-by: Felix Fontein <felix@fontein.de>

Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit f5b4dcc564)

Co-authored-by: Nabheet Sandhu <nabheet@users.noreply.github.com>
2021-11-15 22:26:19 +01:00
..
.keep Rename changelogs/fragments/.empty -> changelogs/fragments/.keep 2020-08-07 08:17:57 +02:00
4.0.2.yml Prepare 4.0.2 release. 2021-11-13 15:47:25 +01:00
3625-nmcli_false_changed_mtu_fix.yml Fix dummy interface returning changed (#3625) (#3688) 2021-11-10 08:00:36 +01:00
3667-ldap_search.yml Allow LDAP search to run in check mode (#3667) (#3725) 2021-11-13 15:27:50 +01:00
3681-lvol-fix-create.yml Rework safety check on size arguments for when LV doesn't exist (#3681) (#3720) 2021-11-13 15:27:35 +01:00
3709-support-batch-mode.yml Enable counter_enabled.py to support batch mode (#3709) (#3732) 2021-11-15 22:26:19 +01:00