[ansible-devel] Ansible 2.10.0 alpha 7

2020-07-30 Thread Toshio Kuratomi
Hi all- For all those wanting to test the next version of Ansible, we're happy to announce that Ansible 2.10.0 alpha7 is now available on PyPI! Ansible 2.10.0a7 pulls in the ansible-base package (currently at version 2.10.0rc4 on PyPI) via a dependency and includes a range of Ansible Collections.

[ansible-devel] New release: ansible-base 2.10.0rc4

2020-07-30 Thread Rick Elrod
Hi all- we're happy to announce that the general release of ansible-base 2.10.0rc4 is now available! This is a pre-release version (release-candidate). How to get it - $ pip install ansible-base==2.10.0rc4 --user The tar.gz of the release can be found here: * ansible-base 2.10.0rc4

[ansible-devel] Schedule for the ansible (as opposed to ansible-base) 2.10 release

2020-07-30 Thread Toshio Kuratomi
Hi all, Ansible-2.10 has been a big change in how we develop Ansible with development split between the ansible-base and ansible packages. Although the development schedule has been known for a long time, we're only finalizing the release schedule for Ansible-2.10.0 now. Here is the release schedu

Re: [ansible-devel] Filter plugin to convert executed command output to JSON

2020-07-30 Thread Kelly Brazil
Hi Adam, Excellent - I'm fully supportive and am happy to assist in any way. Looking forward to working on this project! Kelly On Thursday, July 30, 2020 at 9:50:04 AM UTC-7, Adam Miller wrote: > > On Wed, Jul 29, 2020 at 7:15 PM Kelly Brazil > wrote: > > > > Hi everyone! > > > > I'm not a

Re: [ansible-devel] Filter plugin to convert executed command output to JSON

2020-07-30 Thread Adam Miller
On Wed, Jul 29, 2020 at 7:15 PM Kelly Brazil wrote: > > Hi everyone! > > I'm not a day-to-day user of Ansible, but I am the developer of a tool called > JC that JSONifies the output of many commands and file-types and I got some > feedback that it might be good to integrate JC into Ansible as a

[ansible-devel] access variables retrieved by callback plugin

2020-07-30 Thread Jerry Hwang
Hello, I am working on a custom callback plugin. https://docs.ansible.com/ansible/latest/plugins/callback.html This is a part of code in the plugin I am working. from ansible.plugins.callback import CallbackBase co_create = None class CallbackModule(CallbackBase): CALLBACK_VERSION = 2.0