Alan Rominger
Alan Rominger
@john-westcott-iv has started some research into the options for managing multiple ssh keys. By that, I mean the tradeoffs of mapping groups/hosts to specific SSH keys versus letting it try...
I confirmed that this will show the desired display change ```diff diff --git a/ansible_runner/display_callback/callback/awx_display.py b/ansible_runner/display_callback/callback/awx_display.py index 0388a9a..871d0ef 100644 --- a/ansible_runner/display_callback/callback/awx_display.py +++ b/ansible_runner/display_callback/callback/awx_display.py @@ -27,6 +27,7 @@ DOCUMENTATION = ''' type:...
^ yes, this is the direction I thought it would probably go in. In other cases, we import the callback loader from Ansible and use that to get the parent...
My prior comment was imprecise without code. We do this: https://github.com/ansible/ansible-runner/blob/88130033e6b4791952236a8b1eb6f7ac823649e3/ansible_runner/display_callback/callback/awx_display.py#L64 The argument becomes a string which is either `"minimal"` or `"default"` under normal circumstances. So we're calling ansible-core's code...
^ that may allow a one-shot solution that's compatible with ansible-core both before and after that change. As a general principle, I would like that ansible-runner avoid modifying any Ansible...
I love it!
I missed this: https://github.com/ansible/ansible-runner/blob/1a8c1c59e010ac87966a552b6d3f9f52aa1abe1e/ansible_runner/config/_base.py#L262 We add the callback dir to the PYTHONPATH in the ansible subprocess. Only if it's not containerized. That sounds like it is based on incorrect assumptions...
This error looks like it's in the install script, as opposed to the assemble script https://github.com/ansible/python-builder-image/blob/main/scripts/install-from-bindep#L63 But right before it sets `CONSTRAINTS="-c /output/upper-constraints.txt"`, it checks if that file exists. So...
Saving an instance should never do anything with any related ManyToManyField fields of any sub-types. If we're in the example testapp... https://github.com/jazzband/django-sortedm2m/blob/master/example/testapp/models.py Changing the `plate` field of a `Car` instance,...
I tried to replicate this in a branch here: https://github.com/AlanCoding/django-sortedm2m/compare/test_project_41...AlanCoding:django-sortedm2m:rename_field_migration?expand=1 Doing this properly requires migrating, running the server, creating data, switching to this branch, and then migrating just the new...