[ansible-project] Molecule/testinfra

2018-04-26 Thread 'Chris Short' via Ansible Project
Is anyone using molecule/testinfra to test real infrastructure (verifying things ansible has managed)? The unit testing of playbooks is awesome but how would I use the framework to test real things on real systems? -- You received this message because you are subscribed to the Google Groups "A

[ansible-project] Azure Apex A Record Creation Failing

2017-11-22 Thread 'Chris Short' via Ansible Project
Hello Ansibulls, I'm tinkering with the Ansible Azure modules and think I might have hit a bug. I am unable to create A records at the apex of a domain. This gist contains the playbook and output: https://gist.github.com/chris-short/4a5630e48f1ae1717e5720a51a805835 Thoughts? Thanks, Chris Sho

[ansible-project] Ansible Windows MSI

2017-10-10 Thread 'Chris Short' via Ansible Project
Is there any plans to build an Ansible MSI to allow for easier configuration of Ansible controlled Windows boxes? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email

[ansible-project] Ansible Galaxy/GitHub Issues

2016-12-05 Thread 'Chris Short' via Ansible Project
I've filed a ticket on this but there does not seem to be a workaround (https://github.com/ansible/galaxy-issues/issues/217). I wrote a role that I want to deploy to Galaxy but the GitHub integration fails to work every time. Has anyone experienced this and is there a fix? -- You received this

[ansible-project] Ansible and EC2 Auto-Scaling

2016-10-07 Thread 'Chris Short' via Ansible Project
We are slowly starting our migration away from Puppet towards Ansible and have a use case I'd like the community's feedback on. Some notes to frame the question: 1) Puppet isn't going away immediately. We still have legacy code/infrastructure (who doesn't). 2) Ansible can't break Puppet and vic

[ansible-project] Re: NO SLEEP 'TIL (ANSIBLE CONTRIBUTOR SUMMIT) BROOKLYN!

2016-09-05 Thread 'Chris Short' via Ansible Project
I'll be late, but I should be there. On Monday, September 5, 2016 at 10:33:25 AM UTC-4, Greg DeKoenigsberg wrote: > > Are you a contributor to Ansible, or interested in becoming a > contributor to Ansible? > > Ansible's third Contributor Summit is coming soon, offering > contributors the opport

[ansible-project] Re: Introducing Ansible Container

2016-06-02 Thread 'Chris Short' via Ansible Project
This sounds great! On Thursday, June 2, 2016 at 11:49:43 AM UTC-4, Greg DeKoenigsberg wrote: > > Many thanks to Joshua Ginsberg and Chris Houseknecht of Ansible for > starting this new project: > > https://github.com/ansible/ansible-container > > Still in its infancy, so please take it for a sp

Re: [ansible-project] mysql_db single_transaction breaks import

2016-06-02 Thread 'Chris Short' via Ansible Project
://cshort.co/pub_key Keybase: http://cshort.co/keybaseio On Thu, Jun 2, 2016 at 11:03 AM, Johannes Kastl wrote: > On 02.06.16 15:17 'Chris Short' via Ansible Project wrote: > > Out of curiosity I have a mysql_db play in a playbook that imports a > > database into a pre-produc

[ansible-project] mysql_db single_transaction breaks import

2016-06-02 Thread 'Chris Short' via Ansible Project
Out of curiosity I have a mysql_db play in a playbook that imports a database into a pre-production environment. I added single_transaction=yes to it and the import never fully finished. Not sure if this is a bug or some external issue but since this is new functionality I'd be willing to aid i

[ansible-project] Inventory Group Name as a Variable?

2016-05-18 Thread 'Chris Short' via Ansible Project
I would like to use our inventory group names as a variable in a template file. Has anyone had any success doing this? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [ansible-project] when: state is present from variable dict hash list

2016-03-19 Thread 'Chris Short' via Ansible Project
Thank you, bcoca. Helpful as always! On Friday, March 18, 2016 at 9:48:22 AM UTC-4, Brian Coca wrote: > > you are referencing it incorrectly, staff is a list not a dictionary, also > I think you want the "current item's state": > > when: item.state == 'present' > > assuming you want to execute th

[ansible-project] when: state is present from variable dict hash list

2016-03-18 Thread 'Chris Short' via Ansible Project
I have the following defined in group_vars and I'm trying to run a task when the state is defined as present and the syntax is baffling me: staff: - { netid: user001, uid: 12345, comment: "Chris Short", state: present } - { netid: user002, uid: 12346, comment: "Bob Jones", state: absent } Th