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/plugins/callback
Nabheet Sandhu f5b4dcc564
Enable counter_enabled.py to support batch mode (#3709)
* 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>
2021-11-15 21:39:51 +01:00
..
cgroup_memory_recap.py
context_demo.py
counter_enabled.py Enable counter_enabled.py to support batch mode (#3709) 2021-11-15 21:39:51 +01:00
dense.py
diy.py
elastic.py
hipchat.py
jabber.py
log_plays.py
loganalytics.py
logdna.py
logentries.py
logstash.py
mail.py
nrdp.py
null.py
opentelemetry.py
osx_say.py
say.py
selective.py
slack.py
splunk.py
sumologic.py
syslog_json.py
unixy.py
yaml.py