Explain a few of the basic terminologies or concepts in ansible.
Answer / Rita Kumari
Some fundamental Ansible terms and concepts are: n1. Playbook: A collection of tasks that define actions to be taken on managed nodes.n2. Task: A single action, such as copying a file, installing a package, or running a command.n3. Role: A collection of related tasks, files, templates, and variables used to organize your playbooks.n4. Handler: A special type of task that can be triggered by other tasks when they have completed.n5. Module: A reusable piece of code written in Python that performs a specific task during play execution.n6. Fact: Data collected about managed nodes, such as operating system version, IP address, etc., which can be accessed and used within Ansible tasks.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain different modules in ansible.
Describe the working of ansible.
List some advantages of using ansible.
How do I access a variable of the first host in a group?
How to generate crypto passwords for the user module?
What are the ansible modules? Explain the different types.
Why are you attracted to science and science fiction?
Suppose you’re using ansible to configure the production environment and your playbook uses an encrypted file. Encrypted files prompt the user to enter passwords. But since ansible is used for automation, can this process be automated?
What are the advantages of ansible?
What are ansible server requirements?
How should one configure a jump host to access servers that I have no direct access to?
Explain what are playbooks in ansible? Explain with some examples.