Ansible Roles in Telugu part (5/5) | Ansible Tutorial | DevOps Tutorial for beginners

    9
    14



    Ansible roles is a structured way of grouping tasks, handlers, vars and other properties. They increase reusability. You can easily share roles through Ansible Galaxy.
    Roles provide a framework for fully independent, or interdependent collections of variables, tasks, files, templates, and modules.

    In Ansible, the role is the primary mechanism for breaking a playbook into multiple files. This simplifies writing complex playbooks, and it makes them easier to reuse. The breaking of playbook allows you to logically break the playbook into reusable components.

    Each role is basically limited to a particular functionality or desired output, with all the necessary steps to provide that result either within that role itself or in other roles listed as dependencies.

    Roles are not playbooks. Roles are small functionality which can be independently used but have to be used within playbooks. There is no way to directly execute a role. Roles have no explicit setting for which host the role will apply to.

    Top-level playbooks are the bridge holding the hosts from your inventory file to roles that should be applied to those hosts.

    `– apache
    |– README.md
    |– defaults
    | `– main.yml
    |– files
    |– handlers
    | `– main.yml
    |– meta
    | `– main.yml
    |– tasks
    | `– main.yml
    |– templates
    |– tests
    | |– inventory
    | `– test.yml
    `– vars
    `– main.yml

    My new channel link: https://www.youtube.com/channel/UC0Fdj8NtgpanHnOzLzs5ZBQ

    source

    Previous articleAnsible Tower/AWX CICD Tutorial for Network Automation Part1: Cisco Playbook GitLab | Introduction
    Next articleCreate file and directory using ansible playbook

    14 COMMENTS