- vagrant 2.2.4
- virtualbox 6.0.4
- ansible 2.6.3
- python 3.7
- ruby 2.4.1
- bundler 1.15.3
vagrant up
should bring up the app on http port 80 athttp://10.10.10.20
- Ansible is used as the provisioner (version 2.3.1.0) and the following property must be set in .ansible.cfg:
ansible_python_interpreter=/usr/bin/python3
due to the vagrant box (ubuntu/xenial64) only coming with python3 - nginx installed as reverse proxy forwarding traffic from 0.0.0.0:80 to localhost:5000
- The app is using this github repo
- The app is started using gunicorn running as a service under systemd and should automatically restart if killed
- logs from nginx and gunicorn write to syslog and are viewable using journalctl and rotated by journald
- You need to bundle install the gems from the Gemfile before running the tests
- Under each role are serverspec tests which can be run with the command
rake all
- You can see the available serverspec tasks for each role by running
rake -T
- The code uses a gem called ansible_spec to connect the serverspec test to the ansble roles that get executed by rspec
- If you want to produce junit formatted xml reports from the tests for CI like jenkins you can enable this line
- Ensure that you do not have any connection errors to the virtual machine:
- Try ansible without vagrant
ansible webservers -i inventory/development -m ping
- Try plain ssh
ssh -i .vagrant/machines/default/virtualbox/private_key vagrant@10.10.10.20
- Try ansible without vagrant
Results for base-playbook
Finished in 0.8686 seconds (files took 0.65345 seconds to load)
24 examples, 0 failures
Results for webapp-playbook
Finished in 0.54631 seconds (files took 0.36219 seconds to load)
8 examples, 0 failures