Matt Martz
Matt Martz
Due to expectations within the ansible platform, we expect the minimum target python version to be python3.9. On RHEL8, the `ansible.netcommon` collection indicates to install python39 versions of packages, since...
This is still the case, I wonder if we shouldn't make the warning an error instead: ```diff diff --git a/src/ansible_builder/_target_scripts/introspect.py b/src/ansible_builder/_target_scripts/introspect.py index 0d84e84..8f2ab43 100644 --- a/src/ansible_builder/_target_scripts/introspect.py +++ b/src/ansible_builder/_target_scripts/introspect.py @@ -345,7...
A few things to note: 1. If you have localhost in your inventory, it should be defined to look like this: ``` localhost ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}" ``` 2. It's...
I'm going to go ahead and close this. We're no longer producing an upstream builder image. Users should use a `v3` `execution-environment.yml` and build an execution environment to meet their...
I'm going to go ahead and close this. We're no longer producing an upstream builder image. Users should use a `v3` `execution-environment.yml` and build an execution environment to meet their...
fwiw, `ansible-config dump --format json` exists since ansible-core 2.14. Runner shouldn't try to parse what isn't meant for machine parsable data and turn it into machine parsable. So extending the...
Duplicate of https://github.com/ansible/ansible/issues/73538
Basically, you need 4 layers of quotes in your original example, which can be complicated. Using a block effectively counts as 1 quote layer: ```yaml - name: Demonstrate a string...
In the case of this last example, all you want to do is add use of the `|string` filter: ``` content: '{{ range(1, 8, 2) | join(",") | string }}'...
The dependency on six within pyrax is that it only needs at least six 1.5.2. However the dependency in python-novaclient/oslo.utils may be a higher version. Versions higher than 1.5.2 also...