Matt Martz
Matt Martz
Terminal plugins are not: 1. Documentable 2. Configurable 3. Directly User Selectable They are basically an implementation detail that users need not really concern themselves with. As such, `ansible-doc` has...
I believe this is a duplicate of https://github.com/ansible/ansible/issues/78623 Can you confirm whether https://github.com/ansible/ansible/pull/78640 resolves your issue?
This can be worked around, assuming that you do not actually need dynamic variability in `delegate_to`, to choose a random host per loop item, by pre-calculating the host to delegate...
I suppose an option to have random host per loop item could be achieved by also doing more complex pre-calculations: ```yaml - set_fact: loopy_random_delegation: '{{ loop_items|zip(delegates) }}' vars: delegates: '{{...
Yep, definitely a bug. We will work toward resolving this, but based on my architectural knowledge, this isn't going to be simple to resolve, so I figured I could offer...
Potentially less complex reproducer, or at least one not requiring any real target hosts: ```yaml - hosts: localhost gather_facts: false tasks: - add_host: name: 'host{{ item }}' groups: - test...
I've just merged a fix for this into devel: https://github.com/ansible/ansible/pull/80171 The fix will only be introduced into ansible-core 2.15.0, and will not be backported due to the requirement of new...
We don't want to add another argument. Instead we want to just have `os.walk` always follow symlinks.
Ultimately we're going to expose the strategy to the callback, and the strategy will be able to expose functionality it supports. Unfortunately, we cannot just expose the _full_ strategy to...
Going to close this out. We are no longer producing, nor maintaining, the builder container images. It is recommended to use ansible-builder 3.0, with a v3 schema, to build an...