[ansible-project] Start service clarification

2021-06-09 Thread pushpa Vincent
Hi ...this is my doubt about ansible content file...where to use content file in ansible script.let me know please. Thanks, Pushpa. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails

[ansible-project] Execute playbook on multiple users in the same host

2021-06-09 Thread Krishna P
Hi, can anyone help me, how to execute ansible playbook on multiple users in the same host. fine the below my inventory file and playbook: Note: it will execute only app2 if i execute the below playbook but i want to execute the playbook on all users *Playbook:* --- - hosts: Environment

Re: [ansible-project] Group module defaults for community.kubernetes collection modules

2021-06-09 Thread Abhijeet Kasurde
Hi Erik, Could you please raise a bug against https://github.com/ansible-collections/kubernetes.core with reproducer? Thanks, On Wed, Jun 9, 2021 at 4:53 PM Erik Godding Boye wrote: > Hi, > > We have been using group module defaults on k8s Ansible modules. Trying to > migrate to FQN on module

[ansible-project] Re: Execute playbook on multiple users in the same host

2021-06-09 Thread Krishna P
HI, small correction in the previous email, Playbook is executing in app3 alone and it's ignoring other 2 On Wednesday, June 9, 2021 at 7:17:19 PM UTC+5:30 Krishna P wrote: > Hi, > > can anyone help me, how to execute ansible playbook on multiple users in > the same host. > > fine the below

[ansible-project] Group module defaults for community.kubernetes collection modules

2021-06-09 Thread Erik Godding Boye
Hi, We have been using group module defaults on k8s Ansible modules. Trying to migrate to FQN on module names (and community.kubernetes collection), I am struggling to make this work. https://docs.ansible.com/ansible/latest/user_guide/playbooks_module_defaults.html#module-defaults-groups We

[ansible-project] How to get updates on Patches

2021-06-09 Thread Pabbisetty h
Hello, I am new to AWX. Just wondering how we sign up to be notified by of patches or other issues with AWX. Venkata -- 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

Re: [ansible-project] Re: Execute playbook on multiple users in the same host

2021-06-09 Thread Krishna P
Hi Brian, Thanks, I tried the same and got the below error when I executed the playbook. *Error Screenshot:* [image: image.png] I am able to login all users from an ansible control machine using ssh passwordless authentication. [image: image.png] I have created a group level variable for each

Re: [ansible-project] Group module defaults for community.kubernetes collection modules

2021-06-09 Thread Erik Godding Boye
Hi Abhijeet, Thanks for your response. I have opened this issue: https://github.com/ansible-collections/kubernetes.core/issues/126 Regards, Erik On Wed, Jun 9, 2021 at 2:35 PM Abhijeet Kasurde wrote: > Hi Erik, > > Could you please raise a bug against >

Re: [ansible-project] Re: Execute playbook on multiple users in the same host

2021-06-09 Thread Brian Coca
app1 app2 and app3 are groups, not hosts, you have a single host in all 4 groups, 10.0.0.1 and only one ansible_user/ansible_connection value (since they are squashed to the single host) What you probably want is the following: [Environment] app1 ansbile_host=10.0.01 ansible_user=user1 ... app2