[ansible-project] Dell EMC Unity/Unisphere with Ansible

2019-09-21 Thread Tanisha Mishra
Using the python module https://github.com/jialehuo/ansible-dellemc-unity/blob/master/library/dellemc_unity.py , below have designed the playbook but am facing Request body errors. PLAYBOOK: --- - hosts: localhost vars_prompt: - name: pool_id prompt: "pool_1 : Database

Re: [ansible-project] Pip install docker

2019-09-21 Thread Alfredo De Luca
thanks guys. it worked. cheers On Sat, Sep 21, 2019 at 1:38 PM Vladimir Botka wrote: > On Sat, 21 Sep 2019 13:18:42 +0200 > Alfredo De Luca wrote: > > > - name: Install docker libs with pip > > pip: > > name: docker > > state: present > > > > > *"Unable to find any of pip3 to use.

[ansible-project] How to create AWS Hosted Virtual Interface using Ansible?

2019-09-21 Thread Kishore Ponniah
Hi All, Is there an Ansible module to create a Hosted Private or Public Virtual interface in AWS? I can see a module only for Standard Virtual Interface. Could someone please help? Thanks Kishore -- You received this message because you are subscribed to the Google Groups "Ansible Project"

Re: [ansible-project] Pip install docker

2019-09-21 Thread Vladimir Botka
On Sat, 21 Sep 2019 13:18:42 +0200 Alfredo De Luca wrote: > - name: Install docker libs with pip > pip: > name: docker > state: present > > > *"Unable to find any of pip3 to use. pip needs to be installed." Find out which pip you'd like to use. For example $ which pip3

Re: [ansible-project] Pip install docker

2019-09-21 Thread Alfredo De Luca
thanks Stefan.here is how I install pip - name: Install pip package: name: python-pip update_cache: true state: present On Sat, Sep 21, 2019 at 1:22 PM Stefan Hornburg (Racke) wrote: > On 9/21/19 1:18 PM, Alfredo De Luca wrote: > > Thanks > > > > > > - name: Install docker

Re: [ansible-project] Pip install docker

2019-09-21 Thread Stefan Hornburg (Racke)
On 9/21/19 1:18 PM, Alfredo De Luca wrote: > Thanks  > > > - name: Install docker libs with pip >   pip: >     name: docker >     state: present > OK, but you also installed pip with Ansible before? Check if Ansible keeps the pip location in its facts, that would explain your problem with the

Re: [ansible-project] Pip install docker

2019-09-21 Thread Alfredo De Luca
Thanks - name: Install docker libs with pip pip: name: docker state: present On Sat, Sep 21, 2019 at 1:15 PM Stefan Hornburg (Racke) wrote: > On 9/21/19 1:11 PM, Alfredo De Luca wrote: > > Hi all. > > I installed python pip with ansible then, in the same playbook, I use > pip to

Re: [ansible-project] Pip install docker

2019-09-21 Thread Stefan Hornburg (Racke)
On 9/21/19 1:11 PM, Alfredo De Luca wrote: > Hi all.  > I installed python pip with ansible then, in the same playbook, I use pip to > install docker-py libs but it keep saying  > *"Unable to find any of pip3 to use.  pip needs to be installed." > * > Then If I run the same playbook or if I

[ansible-project] Pip install docker

2019-09-21 Thread Alfredo De Luca
Hi all. I installed python pip with ansible then, in the same playbook, I use pip to install docker-py libs but it keep saying *"Unable to find any of pip3 to use. pip needs to be installed."* Then If I run the same playbook or if I ssh the box then run manually pip install docker it runs

[ansible-project] Re: Dynamic Inventory for the On Prem Windows Servers

2019-09-21 Thread Vikrant Kaushik
On Friday, 20 September 2019 10:50:43 UTC+5:30, Vikrant Kaushik wrote: > > Hi All, > > Can anyone advise if anybody created dynamic inventory for the on-prem > Windows servers? > > I'm 150+ client and per client has 40+ server which is on PRD, DR, QA, > UAT and Dev environments. > > Regards