Bachenbergs
Bachenbergs
I think your playbook is missing `hosts:` have you tried: ``` - name: example strategy: free hosts: localhost tasks: - import_tasks: subtask.yml ``` may have a look here [import_tasks_module](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/import_tasks_module.html)
Hi, At first i only use Ai for translation an better readability. I thought the ansible-lint rules where some kind of standard of the ansible community. If there are rules...
Try one of these: - https://redhat-cop.github.io/automation-good-practices/#_roles_good_practices_for_ansible - https://docs.ansible.com/ansible/latest/tips_tricks/index.html - https://ansible.readthedocs.io/projects/lint/rules/
Hi, I looked at your tests and you only test replica sets with full members, but the error only occurs on an arbiter and i believe you have to activate...
I only looked at the 150 test runs and found nothing suitable at mongodb_status. Sorry, my memory is bad. I'll try to reproduce the error again.
I found our problematic setup Again. We have 3 MongoDBs without Authentication: Primary, Secondary & Arbiter. You need to ask the Arbiter direct to get the error. Please try `login_port:...
This could be fixed by changing [plugins/modules/haproxy.py](https://github.com/ansible-collections/community.general/blob/6fab46710a5a91babf5412c678dadb58d305a47c/plugins/modules/haproxy.py#L344) line 344 to: `if state is not None and wait_for_status is not "DRAIN" and state is not "DOWN":`
> This could be fixed by changing [plugins/modules/haproxy.py](https://github.com/ansible-collections/community.general/blob/6fab46710a5a91babf5412c678dadb58d305a47c/plugins/modules/haproxy.py#L344) line 344 to: `if state is not None and wait_for_status is not "DRAIN" and state is not "DOWN":` I moved my [fix](https://github.com/ansible-collections/community.general/pull/8100/commits/fece40c6f1fa1611d44eff1281e582e972ab425c)...
I moved my [fix](https://github.com/ansible-collections/community.general/pull/8100/commits/fece40c6f1fa1611d44eff1281e582e972ab425c) two lines down. This ensures that the backend is still set to DRAIN and only the wait is skipped. If the backend is set to DRAIN...
> @RayJin2000 did you use ChatGPT or any other LLM to generate the description? Yes, that helps a lot if your not a native speaker. > Thanks for your contribution....