Let's dive straight in and create a playbook that installs Jenkins using just roles downloaded from Ansible Galaxy.
To start, we are going to need a few files; let's get these created now by running the following:
$ mkdir jenkins$ cd jenkins$ touch production requirements.yml site.yml Vagrantfile
As you can see, we are not creating a roles or group_vars folder as we have been doing in previous chapters. Instead, we are creating a requirements.yml file. This will contain a list of the ...