This repository is used as a good start point for infrastructure development. It contains basic roles and describes workflow to create solid solution.
The mastery of the ensemble is determined by the quantity and quality of plays performed. Repertory is created to comprise everything needed for server infrastructure of any level and complexity.
- Playbook per application
- All variables should be defined in environments' vars files
environments/
- root directory for environmentsenvironment_dir/
- directory containing vars and hosts per environmentgroup_vars/
- variables defined per grouphost_vars/
- variables defined per hostplay_vars/
- variables defined per play in playbooksinventory_file
- inventory file with hosts related to the environment
molecule/
- molecule v2 configurationresources/
- shared among molecule scenarios resourcesscenario_name/
- specific molecule scenarios divided by platform, default - docker containers
playbooks/
- directory for playbooks, playbook per applicationroles/
- custom rolesansible.cfg
- config for ansiblerequirements.txt
- python requirementsrequirements.yml
- ansible playbooks' requirementssite.yml
- playbook containing every app in infrastructure
- All variables should be defined per environment
- The precedence order can be seen at http://docs.ansible.com/ansible/playbooks_variables.html#variable-precedence-where-should-i-put-a-variable
- Try to use only next places to define a variable:
- Environment host_vars
- Environment group_vars
- Environment play_vars
- Avoid setting variable in playbooks
- All tasks should be defined in roles
- Playbooks contain only roles, groups of hosts and vars files
- Playbook should contain everything needed for application to start
- Avoid setting variables and tasks in playbooks
- You can use
site.yml
as the only entrypoint for your configuration
- Do not forget use Python 2.7 instead of 3.x. Molecule and Ansible doesn't support Python 3.x
- Clone git repo
git clone [email protected]:express42/ansible-repertory.git
- Install the latest release of Vagrant if you will use ansible-repertory with Parallels VMs
- Then install Vagrant plugin for Parallels
vagrant plugin install vagrant-parallels
- Install prerequisites
cd ansible-repertory
ansible-galaxy install -r requirements.yml
pip install -r requirements.txt
touch vault.key
- Run tests
molecule test
- Remove excessive roles from requirements.yml, python modules from requirements.txt and playbooks
- Make changes to site.yml
- Make changes to vars files in
example
environment - Test changes with command
molecule test
- Copy molecule environment to new environment
- Make changes to inventory and vars files
- Run command
ansible-playbook site.yml --inventory-file=./environments/new_environment/inventory
molecule list
molecule converge
molecule status
molecule login common
molecule destroy
- Fork git repository
- Add repository into Travis-CI
- Push new commits
- Update default packages playbook
- Add more playbooks or list recommended ones
- Add base role (as it is in testo)
- 'zabbix_url' variable used in playbooks dj-wasabi.zabbix-agent and dj-wasabi.zabbix-server for different purposes
- Workaround: redefine 'zabbix_url' in play_vars
- API calls in playbook dj-wasabi.zabbix-agent made from several servers can interfere with each other
- Workaround: make API calls serial
- While using VirtualBox for testing you should change all mentions of interface 'eth0' to 'eth1'