Re: [ansible-project] Docker+gitlab setup using ansible

2020-09-24 Thread Gopal Dhapa
Hi,

want to implement ansible like docker install, docker pull.
Lamp installation in a docker image, after this docker image, want to use
in GitLab.
Using git runner then the developer can download this image which is
already set.
Using GitLab just one-click setup will ready that's I want in my
infrastructure.

Thanks & Regards
Gopal Dhapa

On Wed, Sep 23, 2020 at 6:34 PM Dick Visser  wrote:

> What specific ansible problem are you facing?
>
> On Wed, 23 Sep 2020 at 14:07, Gopal Dhapa  wrote:
> >
> > Hello Team,
> >
> > Need your help to configure docker+gitlab setup in ubuntu or any linux
> environment
> > using ansible please help me on this task thanks in advance.
> >
> >
> > --
> > Thanks & Regards
> > Gopal Dhapa
> >
> > --
> > 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 to ansible-project+unsubscr...@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAFuBnhgegBsm4Ah3-dV-vAoO7F1Xvego-DQbMMT7JkOjtfF-_g%40mail.gmail.com
> .
>
>
>
> --
> Dick Visser
> Trust & Identity Service Operations Manager
> GÉANT
>
> --
> 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 to ansible-project+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAL8fbwP9yN6unciebsxjaob%3DJ9EYPKyiG5F278GfJpWd7eX7mA%40mail.gmail.com
> .
>


-- 
Thanks & Regards
Gopal Dhapa

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhj2iRd%2B6AHGayRSV4U97O8kH6Q%2B%3D7ajvTTpfh%3DNfz_mZQ%40mail.gmail.com.


[ansible-project] Docker+gitlab setup using ansible

2020-09-23 Thread Gopal Dhapa
Hello Team,

Need your help to configure docker+gitlab setup in ubuntu or any linux
environment
using ansible please help me on this task thanks in advance.


-- 
Thanks & Regards
Gopal Dhapa

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhgegBsm4Ah3-dV-vAoO7F1Xvego-DQbMMT7JkOjtfF-_g%40mail.gmail.com.


Re: [ansible-project] How to install Ansible on a windows 2012 R server

2020-08-26 Thread Gopal Dhapa
Hi ,

Please use below link.

https://argonsys.com/microsoft-cloud/articles/configuring-ansible-manage-windows-servers-step-step/



Thanks & Regards
Gopal Dhapa

On Mon, Aug 24, 2020 at 11:19 AM surabhy vaishakh 
wrote:

> Hello Team,
>
> Can any one help me to get steps to install ansible on a windows 2012 R
> server.
>
> Thanks,
> Surabhy
>
> --
> 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 to ansible-project+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/79b0980a-4d3f-41ff-8a4c-8d6b4029c7cdn%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/79b0980a-4d3f-41ff-8a4c-8d6b4029c7cdn%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>


-- 
Thanks & Regards
Gopal Dhapa

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhjBxJz4VPAEe7zNANruxAHboOvAX4uWRaj41gOc872EZw%40mail.gmail.com.


Re: [ansible-project] Re:

2019-05-07 Thread Gopal Dhapa
Thank you it's working now.

Thank you
Gopal Dhapa

On Mon, May 6, 2019, 1:14 AM  wrote:

> To see the hostname or use it in your playbook, you use the
> ansible_hostname or ansible_fqdn variables.
>
> As Jonathan Cha'gara Lozada De La Matta mentioned, the hostname module
> can set it, but many applications still (incorrectly) rely on it also being
> in the /etc/hosts file.  Here's what I've done in my playbooks:
>
>   - name: Setup hostname on system as {{ network_hostname }}.{{
> network_dnsdomain }}
> hostname:
>   name: "{{ network_hostname }}.{{ network_dnsdomain }}"
>
>
>   - name: Add hostname to local /etc/hosts file
> lineinfile:
>   dest: /etc/hosts
>   state: present
>   regexp: "^{{ network_ipaddr }}"
>   line: "{{ network_ipaddr }}   {{ network_hostname }}.{{
> network_dnsdomain }} {{ network_hostname }}"
>
> In this case, I set network_* variables before calling this - my systems
> occasionally confuse Ansible and the ansible_hostname/ansible_fqdn are
> incorrect.
>
> On Sunday, May 5, 2019 at 8:31:37 AM UTC-5, Gopal Dhapa wrote:
>>
>> Hello Team,
>>
>> How to see centos server host name using ansible.
>>
>> Please suggest
>>
>> Thanks in advance.
>>
>> Thank you
>> Gopal Dhapa
>>
> --
> 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 to ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/b0e98f8b-6c15-4090-b40e-d10116757241%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/b0e98f8b-6c15-4090-b40e-d10116757241%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhgee51SaOyC9FO9stKDgoL_b1hSDOc1cK3qwVyge7QcjQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project]

2019-05-05 Thread Gopal Dhapa
How to set host name of centos using ansible.

Thanks in advance.

On Sun, May 5, 2019, 7:01 PM Gopal Dhapa  wrote:

> Hello Team,
>
> How to see centos server host name using ansible.
>
> Please suggest
>
> Thanks in advance.
>
> Thank you
> Gopal Dhapa
>
> --
> 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 to ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAFuBnhjRySTvj6x8T6kDz7WcWAQrcE1mh-djYt5%3DAAjhH2BapA%40mail.gmail.com
> <https://groups.google.com/d/msgid/ansible-project/CAFuBnhjRySTvj6x8T6kDz7WcWAQrcE1mh-djYt5%3DAAjhH2BapA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhjqN15PTeLvuxWeLA2EzpJhUa5T0jPkqPoAFJv8UcnR3g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project]

2019-05-05 Thread Gopal Dhapa
Hello Team,

How to see centos server host name using ansible.

Please suggest

Thanks in advance.

Thank you
Gopal Dhapa

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhjRySTvj6x8T6kDz7WcWAQrcE1mh-djYt5%3DAAjhH2BapA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project]

2018-12-01 Thread Gopal Dhapa
Getting new error plaintext http connection pool

How to resolve.

On Thu, Nov 29, 2018, 6:38 PM Lucas Jackson  You are trying to connect to a Windows host over SSH
>
> Do you have the following in the hosts file for your Windows machines?
> ansible_connection=winrm
>
> Here's an example of a Windows host file:
>
> [win]
> 172.16.2.5
> 172.16.2.6
> [win:vars]
> ansible_user=vagrant
> ansible_password=password
> ansible_connection=winrm
> ansible_winrm_server_cert_validation=ignore
>
>
>
> On Wed, Nov 28, 2018 at 8:03 PM Gopal Dhapa  wrote:
>
>> Hello Team,
>>
>> When I connected ansible to Windows host given ssh connection timeout
>> error.
>> Please find this attachment.
>>
>>
>> I am using powershell version 3.0
>> Winrm service working okay.
>> Use port 5985
>>
>> Other Linux node working okay. With this ansible setup. Please provide
>> your suggestion.
>>
>> Thanks in advance.
>>
>> --
>> 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 to ansible-project+unsubscr...@googlegroups.com.
>> To post to this group, send email to ansible-project@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/ansible-project/CAFuBnhhJsj%3D%2B_95BYCfKVJjkKFqC0jQNn5Tk%2BfWhDdDiZMOwDQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/ansible-project/CAFuBnhhJsj%3D%2B_95BYCfKVJjkKFqC0jQNn5Tk%2BfWhDdDiZMOwDQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 to ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAOPjBs3daYMLqmG-vtq_MXwga-bgKAH_HTenzOwAKgBpgsvyoA%40mail.gmail.com
> <https://groups.google.com/d/msgid/ansible-project/CAOPjBs3daYMLqmG-vtq_MXwga-bgKAH_HTenzOwAKgBpgsvyoA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFuBnhg0VwhAEMb1yBcTLuO39qb5U0uJNb7XE--r0aesRPE5_Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.