Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Latest commit

 

History

History
65 lines (47 loc) · 944 Bytes

README.md

File metadata and controls

65 lines (47 loc) · 944 Bytes

Ansible

Ansible Roles e Playbooks utilizados no decorrer do estágio

Estrutura de pastas

Ansible

foo@bar:~$ tree ansible

.
├── ansible.cfg
├── filter_plugins
├── inventories
├── README.md
└── roles

Inventories

foo@bar:~$ tree ansible/inventories/alcafaz.test

├── 00.tests.yml
├── 01.bootstrap.yml
├── 02.create-vm.yml
├── ...
├── group_vars
├── hosts
└── host_vars

Roles

  • Pasta roles com todos os roles:
foo@bar:~$ tree ansible/roles

├── apache2
├── cloud_init_kvm
├── dns_bind
├── initial_setup
├── wordpress
├── loadbalancer
├── mailman3
├── postfix
└── ...
  • Dentro de cada role:
foo@bar:~$ tree ansible/roles/apache2

├── defaults
├── handlers
├── README.md
├── tasks
└── templates