[ansible-project] ansible foreman callback plugin

2020-08-09 Thread Kiran Kumar
Hi I have setup the plugin for forman https://raw.githubusercontent.com/theforeman/foreman_ansible/master/extras/foreman_callback.py Also install below on ansible control node yum install -y python-pip pip install requests the plugin file is updated from __future__ import

Re: [ansible-project] Is there a strategy that runs on X hosts as fast as possible

2020-08-09 Thread Igor Gnatenko
Hello Vladimir, I saw that one, but I misunderstood how that works because I also had `serial` set in the playbook. Controlling how many tasks are executed via forks does exactly what I was looking for. Thank you for your prompt response! On Sun, Aug 9, 2020 at 4:52 PM Vladimir Botka wrote: >

Re: [ansible-project] acme_certificate account_key* support for sectigo CA

2020-08-09 Thread 'Felix Fontein' via Ansible Project
Hi, > > sectigo is my SSL provider and they support the ACME protocol and > > I'd like to leverage the acme_certificate module; however, Sectigo > > seems to use and HMAC key for authentication rather than RSA keys. > > is it possible to use an HMAC key with the set of acme_* modules > > for CAs

Re: [ansible-project] Is there a strategy that runs on X hosts as fast as possible

2020-08-09 Thread Vladimir Botka
On Sun, 9 Aug 2020 04:33:58 -0700 (PDT) Igor Gnatenko wrote: > Basically I am looking for something like `parallel -jX` linux command. At > any time it runs up to X threads with a command. That's what strategy "host_pinned" does. See

[ansible-project] Is there a strategy that runs on X hosts as fast as possible

2020-08-09 Thread Igor Gnatenko
Basically I am looking for something like `parallel -jX` linux command. At any time it runs up to X threads with a command. I noticed that serial: 2 with any strategy will wait for play to run on these 2 hosts and only after that it will move to the next ones. However, I'd like Ansible to run