Move playbooks into their own folder

This commit is contained in:
saibotk 2021-03-05 14:06:48 +01:00
parent fa4de9b5bb
commit 32d6d7b905
Signed by: saibotk
GPG key ID: 67585F0065E261D5
24 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ Ansible infrastructure playbooks/roles for the saibotk.de services.
## Requirements ## Requirements
Some roles may need specific python libraries etc. installed on the ansible client (for example python-influxdb for the [roles/monitoring](roles/monitoring) role). Some roles may need specific python libraries etc. installed on the Ansible client (for example python-influxdb for the [roles/monitoring](roles/monitoring) role).
## Setup ## Setup
@ -15,12 +15,12 @@ ansible-galaxy install -f -r requirements.yml
Run with your local (test) inventory: Run with your local (test) inventory:
``` ```
ansible-playbook -i test.inventory PLAYBOOK.yml ansible-playbook -i test.inventory playbooks/PLAYBOOK.yml
``` ```
## Create new roles ## Create new roles
When creating new roles, you can set up an initial folder structure with ansible-galaxy and the default skeleton folder structures defined in [.ansible/skeleton](.ansible/skeleton). When creating new roles, you can set up an initial folder structure with Ansible-Galaxy and the default skeleton folder structures defined in [.ansible/skeleton](.ansible/skeleton).
For more information check out the Ansible documentation [here](https://docs.ansible.com/ansible/devel/galaxy/dev_guide.html#using-a-custom-role-skeleton) For more information check out the Ansible documentation [here](https://docs.ansible.com/ansible/devel/galaxy/dev_guide.html#using-a-custom-role-skeleton)
``` ```