All Videos

How to list the docker running containers?

How to list the docker running containers in Tamil?

September 27, 2020

what is docker Client and server ?

what is docker Client and server in Tamil ?

Ansible Adhoc Commands with examples – Part-3

Ansible Adhoc Commands with examples – Part-3

September 29, 2020

How to use “set_facts” module in ansible playbook example-01?

How to use “set_facts” module in ansible playbook example-01? Here is the code to know about the set_facts playbook module in ansible example 01 : — # 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 –   # Target: where our play will run and options it will run with   hosts: localhost   # Task: the list of tasks that will be executed within the play, this section   # can also be used for pre and post tasks   tasks:     – name: set a fact       set_fact:         our_fact: Ansible Rocks!     – name: show custom fact       debug:         msg: “{{ our_fact }}” # three dots indicate the end of a YAML document …  

October 6, 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