Sed viverra ipsum nunc aliquet bibendum enim facilisis gravida. Diam phasellus vestibulum lorem sed risus ultricies. Magna sit amet purus gravida quis blandit. Arcu cursus vitae congue mauris. Nunc mattis enim ut tellus elementum sagittis vitae et leo. Semper risus in hendrerit gravida rutrum quisque non. At urna condimentum mattis pellentesque id nibh tortor. A erat nam at lectus urna duis convallis convallis tellus. Sit amet mauris commodo quis imperdiet massa. Vitae congue eu consequat ac felis.
Vestibulum lorem sed risus ultricies. Magna sit amet purus gravida quis blandit. Arcu cursus vitae congue mauris. Nunc mattis enim ut tellus elementum sagittis vitae et leo. Semper risus in hendrerit gravida rutrum quisque non.
Eget aliquet nibh praesent tristique magna sit amet purus. Consequat id porta nibh venenatis cras sed felis. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. Habitant morbi tristique senectus et netus et malesuada fames ac. Et tortor consequat id porta nibh venenatis cras sed felis. Fringilla est ullamcorper eget nulla facilisi. Mi sit amet mauris commodo quis. Eget arcu dictum varius duis at consectetur lorem.Venenatis cras sed felis eget velit
Mattis molestie a iaculis at. Volutpat est velit egestas dui id. Suspendisse potenti nullam ac tortor vitae purus faucibus. Aliquet nibh praesent tristique magna sit amet purus gravida. Volutpat blandit aliquam etiam erat velit scelerisque in dictum. Potenti nullam ac tortor vitae purus faucibus ornare suspendisse sed. Aliquet bibendum enim facilisis gravida neque convallis. Malesuada nunc vel risus commodo viverra maecenas. Varius sit amet mattis vulputate enim.
“Arcu cursus vitae congue mauris mattis enim ut tellus elementum sagittis vitae et leo nullam ac tortor”
Egestas quis feugiat urna, tincidunt ut sem sit in ipsum ullamcorper etiam varius turpis tincidunt potenti amet id vel, massa purus arcu lectus scelerisque quisque velit cursus et tortor vel viverra iaculis ornare feugiat ut cursus feugiat est massa, blandit quam vulputate facilisis arcu neque volutpat libero sollicitudin sed ac cursus nulla in dui imperdiet eu non massa pretium at pulvinar tortor sollicitudin et convallis senectus turpis massa bibendum ornare commodo eu scelerisque tristique justo porttitor elit morbi scelerisque facilisis
Ansible is a powerful automation tool that allows system administrators and DevOps professionals to automate tasks such as software deployment, configuration management, and application orchestration. At the heart of Ansible's functionality is the playbook, a YAML file that describes the tasks to be executed on remote servers. In this article, we'll break down each line of a simple Ansible playbook to understand its structure and purpose.
1- name: simple playbook
2 hosts: all
3 become: true
4 tasks:
5 - name: install httpd
6 ansible.builtin.yum:
7 name: httpd
8 state: present
Explanation: This line begins with a hyphen (`-`), which indicates the start of an item in a list in YAML syntax. In this context, the `name:` key is used to provide a human-readable description of the playbook. The value "simple playbook" is a label for this set of instructions, which is helpful for documentation and understanding the playbook's purpose at a glance.
Purpose: While `name` is not mandatory, it’s a good practice to include it to describe what the playbook is intended to do.
Explanation: The `hosts` key specifies the target hosts or groups of hosts where the tasks in the playbook will be executed. In this case, `all` refers to all the hosts defined in the Ansible inventory file.
Purpose: This line determines the scope of the playbook, indicating on which systems the playbook's tasks should be run.
Explanation: The `become` key is used to specify whether the tasks in the playbook should be executed with elevated privileges (typically as the root user). When set to `true`, Ansible will use privilege escalation (such as `sudo`) to perform the tasks.
Purpose: This is crucial for tasks that require administrative access, such as installing software or modifying system configurations.
Explanation: The `tasks` key defines a list of actions that Ansible will perform on the target hosts. Each task is an individual unit of work, such as installing a package, creating a file, or restarting a service.
Purpose: This section is where the actual automation happens. It contains all the instructions that Ansible will execute.
Explanation: This line starts with a hyphen (`-`), indicating a new item in the list of tasks. The `name:` key provides a description of the task, which in this case is "install httpd." This name is purely informational and helps in understanding the task’s purpose.
Purpose: Describing the task helps users and operators quickly grasp what each task is supposed to accomplish, which is particularly useful when troubleshooting or reviewing playbook output.
Explanation: This line specifies the Ansible module to be used for the task. Here, `ansible.builtin.yum` is the module responsible for managing packages on systems that use the YUM package manager, such as Red Hat-based distributions (RHEL, CentOS, Fedora).
Purpose: The module defines the type of action that Ansible will perform. In this case, it tells Ansible that the task involves managing YUM packages.
Explanation: Under the `ansible.builtin.yum` module, the `name:` key specifies the name of the package to be managed. Here, `httpd` refers to the Apache HTTP Server package.
Purpose: This is the actual target of the task—Ansible will ensure that the `httpd` package is in the desired state (installed, updated, or removed).
Explanation: The `state:` key defines the desired state of the package. In this case, `present` ensures that the `httpd` package is installed on the target hosts. Other possible values include `absent` (to remove the package), `latest` (to ensure the package is the most recent version), and more.
Purpose: This setting ensures that the package is installed. If it’s already present, Ansible will do nothing; if it’s missing, Ansible will install it.
This simple playbook demonstrates the basic structure and components of an Ansible playbook. By breaking down each line, we've explored how Ansible playbooks are organized and how they execute tasks on remote servers. Understanding these components is essential for writing effective playbooks that automate your infrastructure tasks efficiently.