All Videos

How to create and access group_vars and host_vars in ansible playbook?

How to create and access group_vars and host_vars in ansible playbook? Create a ansible config file as ansible.cfg file in your project directory: [defaults] inventory = hosts  Create a hosts file as hosts in the project directory [webservers] ansnode1 ansible_ssh_host=192.168.56.202 ansible_python_interpreter=/usr/bin/python ansnode2 ansible_ssh_host=192.168.56.203 ansible_python_interpreter=/usr/bin/python [webservers:vars] ansible_port=22 http_port=8080 [dbservers] ansnode3 ansible_ssh_host=192.168.56.204 ansible_python_interpreter=/usr/bin/python ansnode4 ansible_ssh_host=192.168.56.205 ansible_python_interpreter=/usr/bin/python [dev:children] […]

October 12, 2020

How to create ansible variables in ansible playbook basic example

Create a ansible config file as ansible.cfg file in your directory: [defaults] inventory = hosts  Create a hosts file as hosts in the same directory [webservers] ansnode1 ansible_ssh_host=192.168.56.202 ansible_python_interpreter=/usr/bin/python ansnode2 ansible_ssh_host=192.168.56.203 ansible_python_interpreter=/usr/bin/python [webservers:vars] ansible_port=22 http_port=8080 [dbservers] ansnode3 ansible_ssh_host=192.168.56.204 ansible_python_interpreter=/usr/bin/python ansnode4 ansible_ssh_host=192.168.56.205 ansible_python_interpreter=/usr/bin/python [dev:children] webservers dbservers Create a example variables playbook yaml file as variables_playbook.yml in […]

October 9, 2020

How to create a playbook in Ansible?

Ansible in Tamil -15 Creating the Playbooks in Tamil

How to use “pause” module in ansible playbook?

How to use “pause” module in ansible playbook? Here is the sample code for pause playbook module in ansible module example — # YAML documents begin with the document separator — # the minus in YAML this indicates a list item. The playbook contains a list # of plays, with each play being a dictionary […]

October 7, 2020
Ansible in Tamil

Enabling PSRemoting in Ansible for Windows

How to Enable Ansible PS Remoting for Windows Machine?

August 25, 2023

How to create Jinja2 Template?

How to create Jinja2 Template with Demo?

November 16, 2020

What is Ansible Jinja2 Templates with examples?

What is Ansible Jinja2 Templates with examples?

What is Ansible Facts with examples

What is Ansible Facts with examples

How to create and access host variables inside the playbook?

How to create and access host variables inside the playbook

October 11, 2020
Popular Posts